乐趣区

Code-Review-笔记

记录 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 啊!

退出移动版