我有一个关于使用 react-router(与 Redux 结合)设置初始路由的问题。我已经设置了一些路由,并且基于我的 Redux 商店的状态,我需要始终在页面加载时将用户重定向到某个路由。
我的路线目前设置的方式如下:
<Provider store={store}>
<Router history={history}>
<Route path="/" component={App} onEnter={redirectToInitialRoute}>
<Route path="/send" component={OverviewPage} />
<Route path="/thanks" component={ConfirmPage} />
<Route path="/:categoryIdentifier" component={CategoryPage} />
</Route>
</Router>
</Provider>
我已将 onEnter 函数添加到我的根路由中。我这样做是因为我总是需要在页面加载时重定向,而与用户输入应用程序的页面无关。我的 onEnter 函数的设置方式如下:
function redirectToInitialRoute (nextState, replace) {
if (condition) {
replace('/send');
}
else if (anotherCondition) {
replace('/thanks');
}
}
然而,这个设置会发生什么,是(例如)“anotherCondition”得到满足并重定向到“/thanks”。由于在根路由上传递了onEnter,因此再次触发了redirectToInitialRoute。由于“anotherCondition”仍然为真,重定向再次发生,导致重定向循环。
我想知道解决这个问题的最佳方法是什么?任何帮助是极大的赞赏。提前致谢!