react的生命週期

2022-09-04 08:57:14 字數 779 閱讀 5844

react的週期分為三個階段

例項化階段

當父元件沒有傳props時,取預設的props,此階段在引入的時候就觸發,即使沒有例項化(最新版本的react沒有此api,直接掛載在構造器上面。)

import react, from 'react'

class test extends component

}test.defaultprops=

初始化內部的state

import react, from 'react'

class test extends component

}}

在render之前呼叫,例項化的時候呼叫,用於伺服器渲染的時候用到,假如在這個階段呼叫setstate,之後走render方法。通常在contructor代替。

import react, from 'react'

class test extends component

willcompoentmount()

}

2.更新階段

因父元件的更新props時而更新state時,會先執行這裡面的方法,這裡面的返回值為布林值,一般常用於效能優化。

import react, from 'react'

class test extends component

componentwillreceiveprops(nextprops)

}

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...