刷新浏览器后,Vuex的数据是否存在?如何解决?

vue项目中用vuex来做全局的状态管理,发现当刷新网页后,保存在vuex实例store里的数据会丢失。
原因:因为store里面的数据是保存在运行内存中的,当页面刷新时,页面会重新加载vue实例,store里面的数据就会被重新赋值初始化。

解决方法有两种:

  • 使用vuex-along
  • 使用localStorage或者sessionStorage

使用 vuex-along

vuex-along 的实质也是将vuex中的数据存放到localStorage或者sessionStorage中,只不过这个存取过程组件会帮我们完成,我们只需要用vuex的读取数据方式操作就可以了。
使用方法:
安装vuex-alongnpm install vuex-along --save
配置vuex-along:在store/index.js中最后添加以下代码:

1
2
3
4
5
6
7
8
9
10
11
import VueXAlong from 'vuex-along' //导入插件
export default new Vuex.Store({
//modules: {
//controler //模块化vuex
//},
plugins: [VueXAlong({
name: 'store', //存放在localStroage或者sessionStroage 中的名字
local: false, //是否存放在local中 false 不存放 如果存放按照下面session的配置
session: { list: [], isFilter: true } //如果值不为false 那么可以传递对象 其中 当isFilter设置为true时, list 数组中的值就会被过滤调,这些值不会存放在seesion或者local中
})]
});

使用 localStorage 或者 sessionStorage

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
created() {
//在页面加载时读取sessionStorage里的状态信息
if (sessionStorage.getItem("store")) {
this.$store.replaceState(
Object.assign(
{},
this.$store.state,
JSON.parse(sessionStorage.getItem("store"))
)
);
}
//在页面刷新时将vuex里的信息保存到sessionStorage里
window.addEventListener("beforeunload", () => {
sessionStorage.setItem("store", JSON.stringify(this.$store.state));
});
},
文章作者: qinwei
文章链接: https://qw-null.github.io/2022/08/19/Vuex刷新问题/
版权声明: 本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 QW's Blog