react 生命周期钩子函数
1、挂载:construct、getDerivedStateFromProps、render、componentDidMounted
2、更新:getDerivedStateFromProps、componentWillUpdate、render、getSnapshotBeforeUpdate、componentDidUpdated
3、卸载:componentWillUnmounted
4、请求放在 componentDidMount 里
react 生命周期图:https://projects.wojtekmaj.pl/react-lifecycle-methods-diagram/