We have two pages "/read" and "/write". Page "/write" each second updates localStorage with current time:
setInterval(function(){
var time = (new Date()).getTime();
localStorage.setItem("time", time);
console.log("set", time);
},1000);
Page "/read" reads same storage:
setInterval(function(){
var time = localStorage.getItem("time");
console.log("get", time);
},1000);
One would think that "/read" page should show the same values which are written to localStorage by another page. But in IE11 on Win8.1 this is broken. Page "/read" reads some old value from storage, and further on it will show you the same value (as if it uses cache for local storage). Any ideas?
P.S. Both pages are on the same domain (live example - read write)
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…