稳定状态
状态(state)发生改变
render
React@v17之后在这里新增了getDerivedStateFromProps方法
false
卸载(unmount)组件
组件被销毁
属性(props)发生改变
getDerivedStateFromProps(新)
getSnapshotBeforeUpdate(新)
constructor
true
componentDidUpdate
componentWillReceiveProps
componentWillUpdate
shouldComponentUpdate
componentWillMount
组件被调用
componentWillUnmount
componentDidMount
React@v17中将被废弃