当我们想刷新页面也保存当时的数据的时候,会遇到这样那样的问题,其实,仅仅的几行代码就什么都解决了,下面是代码(js):

var vm = new Vue({
		el:'.search_moduel',
		data:{
			history:[] //存储查询历史记录的数据
		},
		methods:{
			//刷新页面或者从别的页面进入,提取this.history的值
			getPageData:function(){
				this.history = JSON.parse(localStorage.getItem('this.history'));//使用getItem方法的前提是,你再自己需要的地方使用了setItem方法
			}
		},
		//钩子函数,在实例被创建之后被调用,调用getPageData()
		created:function(){
			this.getPageData();
		}
	});


Logo

前往低代码交流专区

更多推荐