React的生命周期函数
React v16.4
React v16.0之前
生命周期函数是指在某一时刻组件会自动执行的函数
Initialization(初始化)
初始化
constructor:ES6语法中的,不算React的生命周期函数
Mounting(挂载)
- componentWillMount:在组件
将被挂载
到页面的时候执行(第一次) - render:
- componentDidMount:在组件
被挂载后
到页面的时候执行(第一次)
Updating(更新)
props
- componentWillReceiveProp
- shouldComponentUpdat
- componentWillUpdat
- rende
- componentDidUpdate