初始化阶段
constructor()
getDerivedStateForProps()
render()
componentDidMount()
更新阶段
getDerivedStateForProps()
shouldComponentUpdate()
render()
getSnapshotBeforeUpdate()
componentDidUpdate()
卸载阶段
componentWillUnmount()
constructor()
getDerivedStateForProps()
render()
componentDidMount()
getDerivedStateForProps()
shouldComponentUpdate()
render()
getSnapshotBeforeUpdate()
componentDidUpdate()
componentWillUnmount()