摘要:用處你在組建中所有的移除所有組建中的監聽生命周期父子組件渲染順序父組件代碼引入子組件子組件代碼瀏覽器中的執行結果如下圖結論所以在的組件掛載及過程中,最底層的子組件是最先完成掛載及更新的。
原文首發在我的個人博客:歡迎點此訪問我的個人博客
學了一段時間的react了,現在對自己學習的react的生命周期做一個簡單總結(如有錯誤請留言指正,謝謝)react一共有如下幾個生命周期函數
constructor( props, context){}
componentWillMount (){}
componentDidMount (){}
componentWillReceiveProps( nextProps ){}
shouldComponentUpdate( nextProps, nextState){}
componentWillUpdate (nextProps,nextState){}
render()
componentDidUpdate(prevProps,prevState){}
componentWillUnmount (){}
下面我們分別看看這幾個函數的用法 1. constructor( props, context){}constructor可接收兩個參數,獲取到父組件傳下來的的props,context
只要組件存在constructor,就必要要寫super,否則this指向會錯誤
constructor(props,context) { super(props,context) }2.componentWillMount (){}組件將要掛載
此時組件還未渲染完成,dom還未渲染
3.componentDidMount (){}組件渲染完成,此時dom節點已經生成,可以在這里調用ajax請求
4.componentWillReceiveProps (nextProps){}在接受父組件改變后的props需要重新渲染組件時需要用到這個函數
5.shouldComponentUpdate(nextProps,nextState){}setState以后,state發生變化,組件會進入重新渲染的流程,return false可以阻止組件的更新
6.componentWillUpdate (nextProps,nextState){}當組件進入重新渲染的流程才會進入componentWillUpdate函數
7.render函數render是一個React組件所必不可少的核心函數,render函數會插入jsx生成的dom結構,react會生成一份虛擬dom樹,在每一次組件更新時,在此react會通過其diff算法比較更新前后的新舊DOM樹,比較以后,找到最小的有差異的DOM節點,并重新渲染
用法:
render () { return (8.componentDidUpdate(prevProps,prevState){}something) }
組件更新完畢后,react只會在第一次初始化成功會進入componentDidmount,之后每次重新渲染后都會進入這個生命周期,這里可以拿到prevProps和prevState,即更新前的props和state。
9.componentWillUnmount ()用處:
1.clear你在組建中所有的setTimeout,setInterval 2.移除所有組建中的監聽 removeEventListenerreact生命周期父子組件渲染順序
父組件代碼:
import React,{Component} from "react" import ChildComponent from "./component/ChildComponent"http://引入子組件 class App extends Component{ constructor(props,context) { super(props,context) console.log("parent-constructor") } componentWillMount () { console.log("parent-componentWillMount") } componentDidMount () { console.log("parent-componentDidMount") } componentWillReceiveProps (nextProps) { console.log("parent-componentWillReceiveProps") } shouldComponentUpdate (nextProps,nextState) { console.log("parent-shouldComponentUpdate") } componentWillUpdate (nextProps,nextState) { console.log("parent-componentWillUpdate") } componentDidUpdate (prevProps,prevState) { console.log("parent-componentDidUpdate") } render() { return "" } componentWillUnmount () { console.log("parent-componentWillUnmount") } } export default App
子組件代碼:
import React,{Component} from "react" class ChildComponent extends Component{ constructor(props,context) { super(props,context) console.log("child-constructor") } componentWillMount () { console.log("child-componentWillMount") } componentDidMount () { console.log("child-componentDidMount") } componentWillReceiveProps (nextProps) { console.log("child-componentWillReceiveProps") } shouldComponentUpdate (nextProps,nextState) { console.log("child-shouldComponentUpdate") } componentWillUpdate (nextProps,nextState) { console.log("child-componentWillUpdate") } componentDidUpdate (prevProps,prevState) { console.log("child-componentDidUpdate") } render(){ return "" } componentWillUnmount () { console.log("child-componentWillUnmount") } } export default ChildComponent
瀏覽器中的執行結果如下圖:
所以在react的組件掛載及render過程中,最底層的子組件是最先完成掛載及更新的。
constructor()構造函數、componentWillMount執行順序:頂層父組件--子組件--子組件--...--底層子組件
render、componentDidMount順序:底層子組件--子組件--子組件--...--頂層父組件
(如有錯誤,麻煩留言指正,謝謝~~)
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://m.specialneedsforspecialkids.com/yun/107229.html
摘要:已經被廢除,具體缺陷可以參考二為了解決的缺陷,第二種解決方案是高階組件簡稱。我們定義了父組件,存在自身的,并且將自身的通過的方式傳遞給了子組件。返回一個標識該的變量,以及更新該的方法。 ??為了實現分離業務邏輯代碼,實現組件內部相關業務邏輯的復用,在React的迭代中針對類組件中的代碼復用依次發布了Mixin、HOC、Render props等幾個方案。此外,針對函數組件,在Reac...
摘要:已經被廢除,具體缺陷可以參考二為了解決的缺陷,第二種解決方案是高階組件簡稱。我們定義了父組件,存在自身的,并且將自身的通過的方式傳遞給了子組件。返回一個標識該的變量,以及更新該的方法。 ??為了實現分離業務邏輯代碼,實現組件內部相關業務邏輯的復用,在React的迭代中針對類組件中的代碼復用依次發布了Mixin、HOC、Render props等幾個方案。此外,針對函數組件,在Reac...
摘要:已經被廢除,具體缺陷可以參考二為了解決的缺陷,第二種解決方案是高階組件簡稱。我們定義了父組件,存在自身的,并且將自身的通過的方式傳遞給了子組件。返回一個標識該的變量,以及更新該的方法。 ??為了實現分離業務邏輯代碼,實現組件內部相關業務邏輯的復用,在React的迭代中針對類組件中的代碼復用依次發布了Mixin、HOC、Render props等幾個方案。此外,針對函數組件,在Reac...
閱讀 3044·2021-11-22 09:34
閱讀 2516·2021-09-30 09:47
閱讀 1448·2021-09-03 10:32
閱讀 3720·2021-08-16 10:49
閱讀 1794·2019-08-30 15:55
閱讀 2465·2019-08-30 15:52
閱讀 3325·2019-08-30 15:44
閱讀 1359·2019-08-30 15:44