共计 269 个字符,预计需要花费 1 分钟才能阅读完成。
记录 code reivew 中的问题代码。
mobx 请求
问题代码:
class Store {constructor() {this.init();
}
init() {this.fetchActionLogs();
}
fetchActionLogs() {
Request.get('/dms/order/web/log/orderDetail/v1', {data: { sourceNum: orderNo},
}).then((res) => {// blahblah});
}
}
mobx 写多了,React 首屏数据加载的正确时机也忘了。componentDidMount 啊!
正文完
发表至: javascript
2019-10-17