我发现没有使用react-router-redux从动作创建者异步动作完成路由的唯一工作方法是将历史道具从组件传递给动作创建者并执行:
history.push('routename');
由于BrowserRouter忽略传递给它的历史道具,因此我们不能将自定义历史对象与browserhistory一起使用.
您可以使用具有自定义历史记录的路由器,而不是使用BrowserRouter
原文链接:https://www.f2er.com/react/300890.htmlimport { Router } from 'react-router' import createBrowserHistory from 'history/createBrowserHistory' export const history = createBrowserHistory() <Router history={history}> <App/> </Router>
在这种情况下,您的history.push()将起作用.使用BrowserRouter history.push不起作用,因为创建新的browserHistory将无法工作,因为< BrowserRouter>创建自己的历史记录实例,并侦听对其的更改.因此,不同的实例将更改URL但不更新< BrowserRouter>.
创建自定义历史记录后,您可以将其导出,然后将其导入到您的操作创建器中,并使用它来动态导航
import { history } from '/path/to/index'; const someAction = () => { return dispatch => { ApiCall().then((res) => { dispatch({type: 'SOME_CALL',payload: res }) history.push('/home'); }) } }