使用react路由器v4更改路由时是否有任何方法可以触发事件。我需要在每次路线更改时触发一个功能。我在通用react-redux应用程序的客户端使用BrowserRouter
和Switch
react-router-dom
。
答案 0 :(得分:6)
我通过使用其他组件包装我的应用程序来解决这个问题。该组件在Route
中使用,因此它也可以访问history
道具。
<BrowserRouter>
<Route component={App} />
</BrowserRouter>
App
组件订阅历史记录更改,因此无论何时路由更改,我都可以执行某些操作:
export class App extends React.Component {
componentWillMount() {
const { history } = this.props;
this.unsubscribeFromHistory = history.listen(this.handleLocationChange);
this.handleLocationChange(history.location);
}
componentWillUnmount() {
if (this.unsubscribeFromHistory) this.unsubscribeFromHistory();
}
handleLocationChange = (location) => {
// Do something with the location
}
render() {
// Render the rest of the application with its routes
}
}
不确定这是否是在V4中执行此操作的正确方法,但我在路由器本身上找不到任何其他扩展点,因此这似乎有效。希望有所帮助。
编辑:也许您也可以通过将<Route />
包装在您自己的组件中并使用componentWillUpdate
之类的内容来检测位置更改来实现相同的目标。
答案 1 :(得分:4)
React:v15.x,React Router:v4.x
组件/核心/ App.js:
import React, { Component } from 'react';
import PropTypes from 'prop-types';
import { BrowserRouter } from 'react-router-dom';
class LocationListener extends Component {
static contextTypes = {
router: PropTypes.object
};
componentDidMount() {
this.handleLocationChange(this.context.router.history.location);
this.unlisten =
this.context.router.history.listen(this.handleLocationChange);
}
componentWillUnmount() {
this.unlisten();
}
handleLocationChange(location) {
// your staff here
console.log(`- - - location: '${location.pathname}'`);
}
render() {
return this.props.children;
}
}
export class App extends Component {
...
render() {
return (
<BrowserRouter>
<LocationListener>
...
</LocationListener>
</BrowserRouter>
);
}
}
index.js:
import App from 'components/core/App';
render(<App />, document.querySelector('#root'));