其他分享
首页 > 其他分享> > vue 页面跳转到新页面,参数带过去拿不到,放缓存里

vue 页面跳转到新页面,参数带过去拿不到,放缓存里

作者:互联网

当页面跳转到一个新页面时,参数带不过来,需要用到缓存

sessionStorage.setItem("serarCondition",JSON.stringify(this.form))

 

 在新页面的created里面拿到缓存的值

this.serarCondition=JSON.parse(sessionStorage.getItem("serarCondition"));

在新页面离开时,要清除缓存

    beforeDestroy(){         sessionStorage.removeItem('serarCondition')     },

 

 

 

标签:缓存,serarCondition,sessionStorage,新页面,JSON,vue,跳转
来源: https://www.cnblogs.com/guohanting/p/14692620.html