查看了官方文档,好像并没有说到这个
React Router v3 提供了 onEnter、onUpdate 和 onLeave 方法。这些本质上是重新创建 React 的生命周期方法。
使用 v4,您应该使用 渲染的组件的生命周期方法。您可以使用 componentDidMount 或 componentWillMount,而不是 onEnter。在您要使用 onUpdate 的地方,您可以使用 componentDidUpdate 或 componentWillUpdate (或者可能使用 componentWillReceiveProps)。 onLeave 可以替换为 componentWillUnmount.
React Router v3 提供了 onEnter、onUpdate 和 onLeave 方法。这些本质上是重新创建 React 的生命周期方法。
使用 v4,您应该使用 渲染的组件的生命周期方法。您可以使用 componentDidMount 或 componentWillMount,而不是 onEnter。在您要使用 onUpdate 的地方,您可以使用 componentDidUpdate 或 componentWillUpdate (或者可能使用 componentWillReceiveProps)。 onLeave 可以替换为 componentWillUnmount.