我在www.infinity2o.com上有一个react / redux webapp,有多条路线:
<Route exact={true} path="/profile" component={Profile} />
<Route exact={true} path="/sorting_hat" component={SortingHat} />
我遇到的问题是我的UI颜色主题已保存到我的redux商店中。但是,每当我的网址路线从infinity2o.com/profile
更改为infinity2o.com/sorting_hat
时,我的整个状态都会重置为null
。
在路由之间切换时,是否可以保持我的某些redux状态持久?
答案 0 :(得分:2)
您可以尝试使用redux-persist库