实现 sessionStorage 的监听
在main.js中
挂载resetSetStorageEvent()方法到vue原型链上
两个参数 :
key指的是:sessionStorage中需要监听的键名
newVal指的是:sessionStorage中需要监听的键值
Vue.prototype.resetSetStorageEvent = function(key, newVal) {
if (key === 'isShow') {
// 创建一个StorageEvent事件
var newStorageEvent = document.createEvent('StorageEvent')
const storage = {
setItem: function(k, val) {
sessionStorage.setItem(k, val)
// 初始化创建的事件
newStorageEvent.initStorageEvent('setItem_isShow', false, false, k, null, val, null, null)
// 派发对象
window.dispatchEvent(newStorageEvent)
}
}
return storage.setItem(key, newVal)
}
}
##触发
在改变相应的(需要监听的)sessionStorage值时触发
this.resetSetStorageEvent ('isShow', '新的值');
监听响应
window.addEventListener('setItem_isShow', (e) => {
this.XXX= sessionStorage.getItem('isShow')
})
参考:https://blog.csdn.net/weixin_30596343/article/details/95973062