1.componentWillMount
2.render
3.componentDidMount
4.componentWillUpdate
5.render
6.componentWillReceiveProps
这个生命周期用在子组件上:
触发时机是:
(1)子组件接收了父组件传递的值
(2)如果该子组件第一次存在于父组件中,这个生命周期不会执行
如果该子组件之前已经存在于父组件中,这个生命周期才会执行
7.shouldComponentUpdate
需要返回true或者false
8.componentWillUpdate
9.componentWillMount