onEnter
メソッドが機能しません。それはどういう考えですか?React-RouterでonEnterが呼び出されていない
// Authentication "before" filter
function requireAuth(nextState, replace){
console.log("called"); // => Is not triggered at all
if (!isLoggedIn()) {
replace({
pathname: '/front'
})
}
}
// Render the app
render(
<Provider store={store}>
<Router history={history}>
<App>
<Switch>
<Route path="/front" component={Front} />
<Route path="/home" component={Home} onEnter={requireAuth} />
<Route exact path="/" component={Home} onEnter={requireAuth} />
<Route path="*" component={NoMatch} />
</Switch>
</App>
</Router>
</Provider>,
document.getElementById("lf-app")
編集:
方法は、私はonEnter={requireAuth()}
を呼び出すときに実行されますが、明らかにそれは目的ではない、と私はまた、所望のパラメータを取得することはできませんされています。
どの反応ルータバージョンを使用していますか? –