简介:Vuex是一个仓库,是vue的状态管理工具,存放公共数据,任何组件都可以使用vuex里的公共数据。Vuex提供了插件系统,允许我们使用 vuex-persistedstate插件,将Vuex的状态持久化到本地存储中,解决页面刷新或重新打开应用时状态丢失的问题;这里记录一下Vuex数据持久化的几种实现方案。
⭐这里先介绍一下Vuex里面属性及使用
1、属性介绍
| |
| state: { |
| flag: 0, |
| }, |
| |
| |
| mutations: { |
| defineTest(state, i) { |
| state.flag = i; |
| } |
| }, |
| |
| |
| getters: { |
| }, |
| |
| |
| actions: { |
| }, |
| |
| |
| modules: { |
| }, |
| |
| |
| plugins: [ |
| vuexPersistedState({ |
| storage: window.localStorage, |
| }), |
| ], |
复制
2、页面调用
| |
| computed: { |
| ...mapState(['flag']) |
| }, |
| <div>{{ flag }}</div> |
| |
| |
| <div v-if="this.$store.state.flag">测试数据</div> |
| |
| |
| |
| methods: { |
| |
| ...mapMutations(['increment']), |
| |
| this.increment(); |
| } |
| |
| |
| this.$store.commit('defineTest', i) |
| |
| |
| this.$store.dispatch('someAction', payload); |
复制
⭐Vue2中,Vuex状态、数据持久化
一、通过手写函数和plugins,实现状态、数据持久化话;
1、新建pluginPersist.js文件,并导出存储函数
| |
| |
| |
| |
| export default function (store) { |
| |
| |
| const KEY = 'VUEX:STATE'; |
| |
| window.addEventListener("beforeunload", () => { |
| localStorage.setItem(KEY, JSON.stringify(store.state)) |
| }) |
| |
| try { |
| const state = JSON.parse(localStorage.getItem(KEY)); |
| if (state) { |
| store.replaceState(state); |
| } |
| } catch (err) { |
| console.log(err); |
| } |
| } |
复制
2、在store中,在plugins里引入挂载使用;plugins插件中的函数会在创建仓库时执行,插件的本质就是一个函数
| import Vue from 'vue' |
| import Vuex from 'vuex' |
| import pluginPersist from "./pluginPersist" |
| |
| Vue.use(Vuex) |
| |
| const store = new Vuex.Store({ |
| state: { |
| |
| }, |
| mutations: { |
| |
| }, |
| actions: { |
| |
| }, |
| getters: { |
| |
| }, |
| modules: { |
| |
| }, |
| |
| plugins: [pluginPersist], |
| |
| }) |
| |
| export default store; |
复制
二、通过手写db对象方法,实现数据、状态持久化;
1、新建localStorage.js文件,创建db对象,然后导出db方法
| var localStorage = window.localStorage; |
| const db = { |
| |
| |
| |
| save(key, value) { |
| |
| |
| |
| |
| |
| |
| localStorage.setItem(key, JSON.stringify(value)); |
| }, |
| |
| |
| |
| get(key, getSaveVal = null) { |
| |
| try { |
| return JSON.parse(localStorage.getItem(key)) || getSaveVal; |
| } catch (err) { |
| console.log(err); |
| } |
| }, |
| |
| |
| |
| remove(key) { |
| |
| localStorage.removeItem(key); |
| }, |
| |
| |
| |
| clear() { |
| localStorage.clear(); |
| } |
| }; |
| export default db; |
复制
2、在store中引入使用
| import Vue from 'vue' |
| import Vuex from 'vuex' |
| import db from './localStorage'; |
| |
| Vue.use(Vuex) |
| |
| const store = new Vuex.Store({ |
| state: { |
| |
| state1: db.get('STATE1') || null, |
| }, |
| mutations: { |
| SET_STATE1: (state, value) => { |
| state.state1++ |
| |
| db.save('STATE1', state.state1); |
| }, |
| }, |
| actions: { |
| |
| }, |
| getters: { |
| |
| }, |
| modules: { |
| |
| }, |
| |
| plugins: [], |
| |
| }) |
| |
| export default store |
复制
3、组件中调用SET_STATE1方法,并传值data
| methods: { |
| choseBtn(){ |
| this.$store.commit("SAVE_DOTS", this.data); |
| } |
| }, |
复制
三、通过vue插件vuex-persistedstate 或 vuex-plugin-persistedstate实现数据、状态持久化;
1、安装依赖
| npm install vuex-persistedstate --save |
| //或者 |
| cnpm install vuex-persistedstate --save |
| //或者 |
| yarn add vuex-persistedstate |
| |
| --save是安装在生产环境,开发和生产都需要用到 |
| |
| //查看插件的依赖项 |
| npm ls vuex-persistedstate |
复制
Tips:vuex-persistedstate 和 vuex-plugin-persistedstate 是同一个插件的不同引用方式,它们都是用来持久化 Vuex 状态管理的插件,可以将 Vuex 中的状态保存到本地存储(如 localStorage 或 sessionStorage)中,以便在刷新页面或重新打开应用时恢复这些状态;persist目前已经弃用;
2、引入使用
| import Vue from 'vue'; |
| import Vuex from 'vuex'; |
| import createPersistedState from 'vuex-persistedstate'; |
| |
| Vue.use(Vuex); |
| |
| export default new Vuex.Store({ |
| state: { |
| |
| }, |
| mutations: { |
| |
| }, |
| actions: { |
| |
| }, |
| getters: { |
| |
| }, |
| modules: { |
| |
| }, |
| plugins: [ |
| createPersistedState({ |
| storage: window.localStorage, |
| }), |
| ], |
| }); |
复制
3、注意事项:
-
createPersistedState 函数创建了一个插件实例;
-
可以将存储选项(如 localStorage 或 sessionStorage)作为参数传递给它,插件默认使用 localStorage,但是可以根据需要选择其他存储方式;
-
vuex-persistedstate 插件默认会持久化 Vuex 中的所有状态,如果你只想持久化部分状态,可以通过配置插件的 paths 选项来实现
| createPersistedState({ |
| storage: window.localStorage, |
| |
| paths: ['some', 'partial', 'state'] |
| }) |
复制
在上面的配置中,只有 state.some/partial/state 路径下的状态会被持久化;其它状态在页面刷新或重新加载时不会得到恢复。
⭐Vue3中,Vuex状态、数据持久化,
Vue3中的数据、状态持久化,可以通过Pinia插件实现,是vue3官方指定的持久化实现方案,地址在这:
Pinia官网
https://pinia.vuejs.org/zh/