摘要:
生命周期 | 调用次数 |能否使用setSate() | | defaultProps / getDefaultProps | 1(全局调用一次) | 否 constructor / getInitialState | 1 | 否 componentWillMount | 1 | 是 render 阅读全文
摘要:
Store管理state的变化 维持应用的 state; 提供 getState() 方法获取 state; 提供 dispatch(action) 方法更新 state; 通过 subscribe(listener) 注册监听器; 通过 subscribe(listener) 返回的函数注销监听器 阅读全文