我正在尝试将 react-router 2.0 与 redux-simple-router 一起使用,但我无法让它与查询解析一起使用。这是我从文档中得到的:
const appHistory = useRouterHistory({
parseQueryString: parse,
stringifyQueryString: stringify
})
但是,如果我像这样将历史记录传递给 redux-simple-router ...
syncReduxAndRouter(appHistory, store, (state) => state.router)
......我明白了history.listen is not a function
。直接使用 react-router 中的 browserHistory 似乎与 redux-simple-router 一起工作得很好。为什么历史记录中缺少listen(),我该如何解决这个问题?