您好,登錄后才能下訂單哦!
本文小編為大家詳細介紹“react新舊生命周期的區別有哪些”,內容詳細,步驟清晰,細節處理妥當,希望這篇“react新舊生命周期的區別有哪些”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學習新知識吧。
react新舊生命周期的區別:1、新生命周期中去掉了三個will鉤子,分別為componentWillMount、componentWillReceiveProps、componentWillUpdate;2、新生命周期中新增了兩個鉤子,分別為getDerivedStateFromProps(從props中得到衍生的state)和getSnapshotBeforeUpdate。
本教程操作環境:Windows7系統、react18版、Dell G3電腦。
react在版本16.3前后存在兩套生命周期,16.3之前為舊版,之后則是新版,雖有新舊之分,但主體上大同小異。
React生命周期(舊)
值得強調的是:componentWillReceiveProps函數在props第一次傳進來時不會調用,只有第二次后(包括第二次)傳入props時,才會調用
shouldComponentUpdate像一個閥門,需要一個返回值(true or false)來確定本次更新的狀態是不是需要重新render
React生命周期(新)
react新舊生命周期的區別
新的生命周期去掉了三個will鉤子,分別是:componentWillMount、componentWillReceiveProps、componentWillUpdate
新的生命周期新增了兩個鉤子,分別是:
1、getDerivedStateFromProps:從props中得到衍生的state
接受兩個參數:props,state
返回一個狀態對象或者null,用來修改state的值。
使用場景:若state的值在任何時候都取決于props,那么可以使用getDerivedStateFromProps
2、getSnapshotBeforeUpdate:在更新前拿到快照(可以拿到更新前的數據)
在更新DOM之前調用
返回一個對象或者null,返回值傳遞給componentDidUpdate
componentDidUpdate():更新DOM之后調用
接受三個參數:preProps,preState,snapshotValue
使用案例:
固定高度的p,定時新增一行,實現在新增的時候,使目前觀看的行高度不變。
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>4_getSnapShotBeforeUpdate的使用場景</title> <style> .list{ width: 200px; height: 150px; background-color: skyblue; overflow: auto; } .news{ height: 30px; } </style> </head> <body> <!-- 準備好一個“容器” --> <div id="test"></div> <!-- 引入react核心庫 --> <script type="text/javascript" src="../js/17.0.1/react.development.js"></script> <!-- 引入react-dom,用于支持react操作DOM --> <script type="text/javascript" src="../js/17.0.1/react-dom.development.js"></script> <!-- 引入babel,用于將jsx轉為js --> <script type="text/javascript" src="../js/17.0.1/babel.min.js"></script> <script type="text/babel"> class NewsList extends React.Component{ state = {newsArr:[]} componentDidMount(){ setInterval(() => { //獲取原狀態 const {newsArr} = this.state //模擬一條新聞 const news = '新聞'+ (newsArr.length+1) //更新狀態 this.setState({newsArr:[news,...newsArr]}) }, 1000); } getSnapshotBeforeUpdate(){ return this.refs.list.scrollHeight } componentDidUpdate(preProps,preState,height){ this.refs.list.scrollTop += this.refs.list.scrollHeight - height } render(){ return( <div className="list" ref="list"> { this.state.newsArr.map((n,index)=>{ return <div key={index} className="news">{n}</div> }) } </div> ) } } ReactDOM.render(<NewsList/>,document.getElementById('test')) </script> </body> </html>
說明:
在React v16.3中,迎來了新的生命周期改動。舊的生命周期也在使用,不過在控制臺上可以看到棄用警告了。并且提示有三個生命周期鉤子將會被棄用,盡量不要使用。再或者可以在其前邊加前綴 UNSAFE_
。
讀到這里,這篇“react新舊生命周期的區別有哪些”文章已經介紹完畢,想要掌握這篇文章的知識點還需要大家自己動手實踐使用過才能領會,如果想了解更多相關內容的文章,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。