1.生命周期分為:
a)組件加載之前吁系,組件加載完成(Mounting)
b)組件更新數(shù)據(jù)(Updating)
c)組件銷毀(Unmounting)
在這過程中掌呜,會觸發(fā)一系列的方法堡称。
2.在組件加載的時候觸發(fā)的函數(shù):
constructor, componentWillMount, render, componentDidMount
3.組件更新數(shù)據(jù)的時候觸發(fā)的函數(shù):
shouldComponentUpdate, componentWillUpdate, render, componentDidUpdate
4.你在父組件里改變props傳值的時候觸發(fā):
componentWillReceiveProps
5.組件銷毀時觸發(fā):
componentWillUnmount