我是
靠谱客的博主
淡然巨人,最近开发中收集的这篇文章主要介绍
React通过redux-persist持久化数据存储,觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
在React项目中,我们经常会通过redux以及react-redux来存储和管理全局数据。但是通过redux存储全局数据时,会有这么一个问题,如果用户刷新了网页,那么我们通过redux存储的全局数据就会被全部清空,比如登录信息等。
这个时候,我们就会有全局数据持久化存储的需求。首先我们想到的就是localStorage,localStorage是没有时间限制的数据存储,我们可以通过它来实现数据的持久化存储。
但是在我们已经使用redux来管理和存储全局数据的基础上,再去使用localStorage来读写数据,这样不仅是工作量巨大,还容易出错。那么有没有结合redux来达到持久数据存储功能的框架呢?当然,它就是redux-persist。redux-persist会将redux的store中的数据缓存到浏览器的localStorage中。
1、对于reducer和action的处理不变,只需修改store的生成代码,修改如下
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | import { createStore } from "redux" ; import reducers from "../reducers/index" ; import { persistStore, persistReducer } from "redux-persist" ; import storage from "redux-persist/lib/storage" ; import autoMergeLevel2 from "redux-persist/lib/stateReconciler/autoMergeLevel2" ; const persistConfig = { key: "root" , storage: storage, stateReconciler: autoMergeLevel2, // 查看 'Merge Process' 部分的具体情况 }; const myPersistReducer = persistReducer(persistConfig, reducers); const store = createStore(myPersistReducer); export const persistor = persistStore(store); export default store; |
2、在index.js中,将PersistGate标签作为网页内容的父标签
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | import React from "react" ; import ReactDOM from "react-dom" ; import { Provider } from "react-redux" ; import store from "./redux/store/store" ; import { persistor } from "./redux/store/store" ; import { PersistGate } from "redux-persist/lib/integration/react" ; ReactDOM.render( <Provider store={store}> <PersistGate loading={ null } persistor={persistor}> { /*网页内容*/ } </PersistGate> </Provider>, document.getElementById( "root" ) ); |
这就完成了通过redux-persist实现React持久化本地数据存储的简单应用
3、最后我们调试查看浏览器中的localStorage缓存数据
发现数据已经存储到了localStorage中,此时刷新网页,redux中的数据也不会丢失
最后
以上就是淡然巨人为你收集整理的React通过redux-persist持久化数据存储的全部内容,希望文章能够帮你解决React通过redux-persist持久化数据存储所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复