react生命周期

Posted on 2019-06-30 23:25  猫头唔食鱼  阅读(144)  评论(0编辑  收藏  举报

1.componentWillMount

2.render

3.componentDidMount

4.componentWillUpdate

5.render

6.componentWillReceiveProps

这个生命周期用在子组件上:

触发时机是:

(1)子组件接收了父组件传递的值

(2)如果该子组件第一次存在于父组件中,这个生命周期不会执行

        如果该子组件之前已经存在于父组件中,这个生命周期才会执行

7.shouldComponentUpdate

需要返回true或者false

8.componentWillUpdate

9.componentWillMount