document.cookie 更改时触发操作?
当 document.cookie
更改时,我需要更新 localStorage
。有没有什么方法可以设置侦听器,覆盖原型以充当中间件或其他一些模式,从而能够在更改时触发函数?我试图避免像间隔轮询这样的事情。
感谢您的任何想法。
I need to update localStorage
when document.cookie
changes. Is there any way to set a listener, overwrite a prototype to act as middleware or some other pattern that would result in the ability to trigger a function on change? I'm trying to avoid something like polling on an interval.
Thanks for any ideas.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
无法避免,这些事件根本不存在,您需要进行轮询。
Theres no avoiding it, these events simply dont exist, you'll need to poll.
尝试使用 cookies.onChanged
注意浏览器兼容性。
https://developer.mozilla。 org/en-US/docs/Mozilla/Add-ons/WebExtensions/API/cookies/onChanged
Try with cookies.onChanged
Beware of browser compatibility.
https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/API/cookies/onChanged