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_。