第一次被渲染时
1.constructor
2.getInitialState
3.getDefaultProps
4.componentWillMount
5.render
6.componentDidMount
更新组件的过程
1.componentWillReceiveProps
2.shouldComponentUpdate
3.componentWillUpdate
4.render
5.componentDidUpdate
卸载组件
1.componentWillUnmount
注:在setState的 时候 不会调用 componentWillReceiveProps
网友评论