How do I maintain react-redux state?

2019-07-25 21:47发布

With react-redux all the data is contained in the store. How can I maintain the state that is stored in our store when, for example, opening multiple child tabs from a parent page or after a page refresh?

1条回答
疯言疯语
2楼-- · 2019-07-25 22:26

The redux-localstorage-simple package does what you require. It is a redux middleware component that will automatically serialize redux state to local storage and restore that state, as redux initial-data, on startup.

The package also supports namespaces for the redux state trees it stores so this should allow you to clone distinct state-trees when creating new tabs.

查看更多
登录 后发表回答