react-router-redux在react-router成为4.0后是不是不需要了

发布于 2022-09-05 08:38:52 字数 373 浏览 10 评论 0

本来在项目打算使用如下的配置,本人通过一些教程中看到了如果想要用react router和redux结合使用的话需要如下的依赖,但是当我从官网的create-creact-app搭建的一个项目中发现了browserHistory这个依赖已经没有了。然后同样的有一个react-router-dom中有一个BrowserRouter这个组件是可以实现相同的,是不是不需要react-router-redux进行router和store同步了啊

import { Router, Route, browserHistory } from 'react-router'
import { syncHistoryWithStore } from 'react-router-redux';

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

围归者 2022-09-12 08:38:52

是的。而且在react-router V3也可以不用react-router-redux。这里我说下V3版本如何同步histroystore。不BB,直接上代码:

import { browserHistory } from 'react-router'
import { createStore } from 'redux'

// action
function locationChange (location = '/') {
  return {
    type    : 'LOCATION_CHANGE',
    payload : location
  }
}

// reducer
const initialState = browserHistory.getCurrentLocation()
function locationReducer (state = initialState, action) {
  return action.type === 'LOCATION_CHANGE'
    ? action.payload
    : state
}

// store
const store = createStore(locationReducer)

const updateLocation = ({ dispatch }) => {
  return (nextLocation) => dispatch(locationChange(nextLocation))
}

//绑定browserHistory,取消绑定执行store.unsubscribeHistory()
store.unsubscribeHistory = browserHistory.listen(updateLocation(store))
铁憨憨 2022-09-12 08:38:52

v4需不需要看个人项目需求,在react-router-redux文档中有这么一些说明:

clipboard.png

如果要使用react-router-redux也是可以的,可以参考这个文档说明来使用:

clipboard.png

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文