文章詳情頁
javascript - react-router 4.0版本怎么實現以前onEnter的效果
瀏覽:102日期:2023-02-18 15:49:01
問題描述
查看了官方文檔,好像并沒有說到這個
問題解答
回答1:React Router v3 provides onEnter, onUpdate, and onLeave methods. These were essentially recreating React’s lifecycle methods.
With v4, you should use the lifecycle methods of the component rendered by a <Route>. Instead of onEnter, you would use componentDidMount or componentWillMount. Where you would use onUpdate, you can use componentDidUpdate or componentWillUpdate (or possibly componentWillReceiveProps). onLeave can be replaced with componentWillUnmount.
標簽:
JavaScript
上一條:javascript - 頁面加載慢,有什么優(yōu)化方案下一條:javascript - vue 子組件有個按鈕,點擊了要改變狀態(tài),這個狀態(tài)是父組件通過接口取的,就是要動態(tài)改變接口的狀態(tài)
相關文章:
排行榜
