I am having issues getting the onChange hook in react-router to work properly. Here is my routes file:
import React from 'react';
import { Router, Route, browserHistory } from 'react-router';
import TestOne from './Pages/testone';
import TestTwo from './Pages/testtwo';
function logUpdate() {
console.log('Current URL: ' + window.location.pathname);
}
const Routes = (
<Router history={browserHistory}>
{/* App Routes */}
<Route path="/" ponent={App} lang={lang}>
<Route path="/testone" ponent={TestOne} onUpdate={logUpdate} />
<Route path="/testtwo" ponent={TestTwo} onUpdate={logUpdate} />
</Route>
</Router>);
export default Routes;
My understanding is, that the function logUpdate will be triggered on each state change. However, it is only triggered when I reload the corresponding page via F5.
My menu is using simple Links e.g.:
<div>
<Link to="/testone">Test One</Link>
<Link to="/testtwo">Test Two</Link>
</div>
What am I doing wrong?
I am having issues getting the onChange hook in react-router to work properly. Here is my routes file:
import React from 'react';
import { Router, Route, browserHistory } from 'react-router';
import TestOne from './Pages/testone';
import TestTwo from './Pages/testtwo';
function logUpdate() {
console.log('Current URL: ' + window.location.pathname);
}
const Routes = (
<Router history={browserHistory}>
{/* App Routes */}
<Route path="/" ponent={App} lang={lang}>
<Route path="/testone" ponent={TestOne} onUpdate={logUpdate} />
<Route path="/testtwo" ponent={TestTwo} onUpdate={logUpdate} />
</Route>
</Router>);
export default Routes;
My understanding is, that the function logUpdate will be triggered on each state change. However, it is only triggered when I reload the corresponding page via F5.
My menu is using simple Links e.g.:
<div>
<Link to="/testone">Test One</Link>
<Link to="/testtwo">Test Two</Link>
</div>
What am I doing wrong?
Share Improve this question asked Sep 6, 2016 at 14:29 MartialMartial 1551 gold badge2 silver badges11 bronze badges2 Answers
Reset to default 5onUpdate
needs to be declared on the Router
instance not Route
s. Although, Route
s can declare onChange
and onEnter
hooks - it's probably what you were looking for.
I'm using react-router ^2.4.0 and onUpdate did not work for me. I have instead used onChange on my base Route ponent.
const Routes = (
<Router history={browserHistory}>
{/* App Routes */}
<Route path="/" ponent={App} lang={lang} onChange={logUpdate}>
<Route path="/testone" ponent={TestOne} />
<Route path="/testtwo" ponent={TestTwo} />
</Route>
</Router>);
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743676412a4488640.html
评论列表(0条)