我有几个按钮作为路线。每次更改路线时,我都要确保激活的按钮发生变化。
有没有办法在反应路由器v4中侦听路由更改?
答案 0 :(得分:110)
我使用withRouter
获取location
道具。当组件由于新路由而更新时,我会检查值是否已更改:
@withRouter
class App extends React.Component {
static propTypes = {
location: React.PropTypes.object.isRequired
}
// ...
componentDidUpdate(prevProps) {
if (this.props.location !== prevProps.location) {
this.onRouteChanged();
}
}
onRouteChanged() {
console.log("ROUTE CHANGED");
}
// ...
render(){
return <Switch>
<Route path="/" exact component={HomePage} />
<Route path="/checkout" component={CheckoutPage} />
<Route path="/success" component={SuccessPage} />
// ...
<Route component={NotFound} />
</Switch>
}
}
希望有所帮助
答案 1 :(得分:47)
要扩展上述内容,您需要获取历史记录对象。如果您使用BrowserRouter
,则可以导入withRouter
并使用higher-order component (HoC)包装组件,以便通过props访问历史对象的属性和函数。
import { withRouter } from 'react-router-dom';
const myComponent = ({ history }) => {
history.listen((location, action) => {
// location is an object like window.location
console.log(action, location.pathname, location.state)
});
return <div>...</div>;
};
export default withRouter(myComponent);
唯一需要注意的是,withRouter和大多数其他访问history
的方法似乎会在将对象解构为对象时污染道具。
答案 2 :(得分:29)
v5.1引入了有用的钩子useLocation
https://reacttraining.com/blog/react-router-v5-1/#uselocation
import { Switch, useLocation } from 'react-router-dom'
function usePageViews() {
let location = useLocation()
useEffect(
() => {
ga.send(['pageview', location.pathname])
},
[location]
)
}
function App() {
usePageViews()
return <Switch>{/* your routes here */}</Switch>
}
答案 3 :(得分:21)
你应该使用history v4 lib。
来自there
的示例history.listen((location, action) => {
console.log(`The current URL is ${location.pathname}${location.search}${location.hash}`)
console.log(`The last navigation action was ${action}`)
})
答案 4 :(得分:14)
import React, { useEffect } from 'react';
import { useLocation } from 'react-router';
function MyApp() {
const location = useLocation();
useEffect(() => {
console.log('route has been changed');
...your code
},[location.pathname]);
}
带钩子
答案 5 :(得分:10)
withRouter
,history.listen
和useEffect
(React Hooks)可以很好地协同工作:
const Component = ({ history }) => {
useEffect(() => history.listen(() => {
// do something on route change
// for my example, close a drawer
}), [])
//...
}
export default withRouter(Component)
路由更改时,监听器回调都会触发,history.listen
的返回值是一个关闭处理程序,可以与useEffect
很好地配合使用。
答案 6 :(得分:2)
import { useHistory } from 'react-router-dom';
const Scroll = () => {
const history = useHistory();
useEffect(() => {
window.scrollTo(0, 0);
}, [history.location.pathname]);
return null;
}
答案 7 :(得分:2)
通过react Hooks,我正在使用useEffect
const history = useHistory()
const queryString = require('query-string')
const parsed = queryString.parse(location.search)
const [search, setSearch] = useState(parsed.search ? parsed.search : '')
useEffect(() => {
const parsedSearch = parsed.search ? parsed.search : ''
if (parsedSearch !== search) {
// do some action! The route Changed!
}
}, [location.search])
答案 8 :(得分:2)
对于功能组件,请尝试对props.location使用useEffect。
import React, {useEffect} from 'react';
const SampleComponent = (props) => {
useEffect(() => {
console.log(props.location);
}, [props.location]);
}
export default SampleComponent;
答案 9 :(得分:0)
在某些情况下,您可以这样使用render
属性而不是component
:
class App extends React.Component {
constructor (props) {
super(props);
}
onRouteChange (pageId) {
console.log(pageId);
}
render () {
return <Switch>
<Route path="/" exact render={(props) => {
this.onRouteChange('home');
return <HomePage {...props} />;
}} />
<Route path="/checkout" exact render={(props) => {
this.onRouteChange('checkout');
return <CheckoutPage {...props} />;
}} />
</Switch>
}
}
请注意,如果您使用onRouteChange
方法更改状态,则可能会导致“超出最大更新深度”错误。
答案 10 :(得分:0)
带钩子:
import { useEffect } from 'react'
import { withRouter } from 'react-router-dom'
import { history as historyShape } from 'react-router-prop-types'
const DebugHistory = ({ history }) => {
useEffect(() => {
console.log('> Router', history.action, history.location])
}, [history.location.key])
return null
}
DebugHistory.propTypes = { history: historyShape }
export default withRouter(DebugHistory)
导入并渲染为<DebugHistory>
组件
答案 11 :(得分:0)
使用useEffect
钩子,无需添加侦听器就可以检测路由更改。
import React, { useEffect } from 'react';
import { Switch, Route, withRouter } from 'react-router-dom';
import Main from './Main';
import Blog from './Blog';
const App = ({history}) => {
useEffect( () => {
// When route changes, history.location.pathname changes as well
// And the code will execute after this line
}, [history.location.pathname]);
return (<Switch>
<Route exact path = '/' component = {Main}/>
<Route exact path = '/blog' component = {Blog}/>
</Switch>);
}
export default withRouter(App);
答案 12 :(得分:0)
我只是处理了这个问题,所以我将在其他给出的答案的基础上增加解决方案。
这里的问题是useEffect
并没有真正按照您希望的那样工作,因为调用仅在第一次渲染后才触发,所以会有不必要的延迟。
如果您使用诸如redux之类的状态管理器,由于商店中的状态持续存在,您很可能会在屏幕上闪烁。
您真正想要的是使用useLayoutEffect
,因为它会立即触发。
因此,我编写了一个小的实用程序函数,将其放在与路由器相同的目录中:
export const callApis = (fn, path) => {
useLayoutEffect(() => {
fn();
}, [path]);
};
我是从HOC组件内部这样调用的:
callApis(() => getTopicById({topicId}), path);
path
是使用match
时在withRouter
对象中传递的道具。
我不太赞成手动收听/取消收听历史记录。 那只是imo。