javascript - React-Router onChange hook - Stack Overflow

I am having issues getting the onChange hook in react-router to work properly. Here is my routes file:i

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 badges
Add a ment  | 

2 Answers 2

Reset to default 5

onUpdate needs to be declared on the Router instance not Routes. Although, Routes 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

相关推荐

  • javascript - React-Router onChange hook - Stack Overflow

    I am having issues getting the onChange hook in react-router to work properly. Here is my routes file:i

    23小时前
    30

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信