您的位置:首页技术文章
文章详情页

javascript - react-router 4.0版本怎么实现以前onEnter的效果

【字号: 日期:2023-02-18 15:49:01浏览:62作者:猪猪

问题描述

查看了官方文档,好像并没有说到这个

问题解答

回答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
相关文章: