我使用带有n %= 26
参数的react-router:
routes
这是const rootRoute = {
component: App,
childRoutes: createRoutes(store),
indexRoute: { onEnter: (nextState, replace) => replace('/new-url') }
};
jsx部分:
Router
<Router
history={hashHistory}
routes={rootRoute}>
</Router>
是我尝试添加的行以进行重定向,但它不起作用。
答案 0 :(得分:1)
您需要将Feedback
添加到path: '/'
。