1:LocalStorage 或 SessionStorage:使用 Web 存储机制(LocalStorage 或 SessionStorage)可以在不同标签页之间共享数据。一个标签页可以将数据存储在 LocalStorage 或 SessionStorage 中,其他标签页可以监听存储事件来获取更新的数据。
localStorage.setItem('count', res.data.count)
// 在其他标签页中监听存储事件,并获取更新的数据
getcount(){
let that = this
window.addEventListener('storage',function(event){
console.log(event,'event');
if(event.key == 'count'){
console.log(event.newValue,'新值');
that.setxiaoxi(event.newValue)
}
})
},