最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - React-Router onChange hook - Stack Overflow

programmeradmin1浏览0评论

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>);
发布评论

评论列表(0)

  1. 暂无评论