翻译|Where and When to Fetch Data With Redux
原文:Where and When to Fetch Data With Redux
如果固件为了渲染需要一些数据,你想使用Redux获取数据,并保存在Redux Store中,那么什么时间点是调用API的最好时机?
在componentdidMount生命周期函数中启动Action
在Redux中调用API假设你要显示一个产品列表. 后台API是:’GET/products’,可以这么
...