admin管理员组文章数量:1348117
I was following this here to see if I could enable updates on all open webpages of my site if someone has multiple tabs open.
Basically, I set the listener and check to see if the cart
key was changed
window.addEventListener('storage', function(e) {
if (e.key === "cart") {
console.log(`cart changed: ${e.newValue}`);
}
});
When I change localStorage.cart
from another tab on the same website, the event fires just fine in the first tab:
setInterval(function(){
localStorage.cart = "localStorage 1";
setTimeout(function(){
localStorage.cart = "localStorage 2";
},2000);
},4000);
But when I use sessionStorage
instead of localStorage
it doesn't:
setInterval(function(){
sessionStorage.cart = "sessionStorage 1";
setTimeout(function(){
sessionStorage.cart = "sessionStorage 2";
},2000);
},4000);
Does the storage
event only fire for localStorage
and not sessionStorage
?
Tested on chrome only.
I was following this here to see if I could enable updates on all open webpages of my site if someone has multiple tabs open.
Basically, I set the listener and check to see if the cart
key was changed
window.addEventListener('storage', function(e) {
if (e.key === "cart") {
console.log(`cart changed: ${e.newValue}`);
}
});
When I change localStorage.cart
from another tab on the same website, the event fires just fine in the first tab:
setInterval(function(){
localStorage.cart = "localStorage 1";
setTimeout(function(){
localStorage.cart = "localStorage 2";
},2000);
},4000);
But when I use sessionStorage
instead of localStorage
it doesn't:
setInterval(function(){
sessionStorage.cart = "sessionStorage 1";
setTimeout(function(){
sessionStorage.cart = "sessionStorage 2";
},2000);
},4000);
Does the storage
event only fire for localStorage
and not sessionStorage
?
Tested on chrome only.
Share Improve this question edited Aug 22, 2022 at 8:30 zhulien 5,7154 gold badges24 silver badges39 bronze badges asked Oct 13, 2017 at 16:37 TKoLTKoL 14k4 gold badges48 silver badges85 bronze badges1 Answer
Reset to default 8The sessionStorage is isolated for each tab, so they can't municate. Events for sessionStorage are triggered only in between frames on the same tab.
These codepens provide a good example
Storage Writer writes to storage
function writeSession()
{
sessionStorage.setItem("test", Math.random());
}
function writeLocal()
{
localStorage.setItem("test", Math.random());
}
Storage Reader listens for storage event (keep this open in a different tab.)
window.addEventListener('storage', function(e) {
if(e.storageArea===sessionStorage) {
$("#output").append('Session storage change <br>');
}
if(e.storageArea===localStorage) {
$("#output").append('Local storage change <br>');
}
});
You will notice that when you press the "Write local" button, in both the iframe and the opened tab the event is captured, but when you press the "Session write" only the embedded iframe captures the event.
本文标签: javascriptsessionStorage changes aren39t firing 39storage39 eventStack Overflow
版权声明:本文标题:javascript - sessionStorage changes aren't firing 'storage' event - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743843217a2548655.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论