React 生命週期流程簡介(1)

2021-10-24 16:01:09 字數 1352 閱讀 8910

在react中元件的生命週期會經歷三個過程:

這裡是不同階段生命週期執行順序:

在元件初始化階段會執行

constructor

static getderivedstatefromprops()

componentwillmount() / unsafe_componentwillmount()

render()

componentdidmount()

propsstate的改變可能會引起元件的更新,元件重新渲染的過程中會呼叫以下方法:

componentwillreceiveprops() / unsafe_componentwillreceiveprops()

static getderivedstatefromprops()

shouldcomponentupdate()

componentwillupdate() / unsafe_componentwillupdate()

render()

getsnapshotbeforeupdate()

componentdidupdate()

componentwillunmount()

在react中生命週期一共有這樣幾個:

1、元件將要掛載時觸發:componentwillmount

2、元件掛載完成時觸發:componentdidmount

3、是否要更新資料時觸發:shouldcomponentupdate

4、將要更新資料時觸發:componentwillupdate

5、資料更新完成時觸發:componentdidupdate

6、元件將要銷毀時觸發:componentwillunmount

7、父元件中改變了props傳值時觸發:componentwillreceiveprops

8、錯誤處理:componentdidcatch()

因為有些鉤子是要被廢棄的,所以在書寫時必須在前面加unsafe_才不會有這樣的警告,比如:unsafe_componentwillmount

React 生命週期 生命週期方法

生命週期 掛載 更新 解除安裝 元件被建立 執行初始化 並被掛載到dom中,完成元件的第一次渲染 constructor props getderivedstatefromprops props,state render componentdidmount 元件被建立時會首先呼叫元件的構造方法,接受...

react 生命週期

首次例項化 例項化完成後的更新 元件已存在時的狀態改變 生命週期共提供了10個不同的api。1.getdefaultprops 作用於元件類,只呼叫一次,返回物件用於設定預設的props,對於引用值,會在例項中共享。2.getinitialstate 作用於元件的例項,在例項建立時呼叫一次,用於初始...

react生命週期

盜圖一張 第一次進入頁面列印結果 1 parent constructor 2 parent conponentwillmount 3 parent render 4 initial render constructor 5 componentwillmount 6 render 7 compone...