document.cookie 更改时触发操作?

发布于 2025-01-07 18:09:41 字数 154 浏览 0 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

策马西风 2025-01-14 18:09:41

无法避免,这些事件根本不存在,您需要进行轮询。

Theres no avoiding it, these events simply dont exist, you'll need to poll.

李不 2025-01-14 18:09:41

尝试使用 cookies.onChanged

browser.cookies.onChanged.addListener(function(changeInfo) {
  console.log('Cookie changed: ' +
              '\n * Cookie: ' + JSON.stringify(changeInfo.cookie) +
              '\n * Cause: ' + changeInfo.cause +
              '\n * Removed: ' + changeInfo.removed);
});

注意浏览器兼容性。

https://developer.mozilla。 org/en-US/docs/Mozilla/Add-ons/WebExtensions/API/cookies/onChanged

Try with cookies.onChanged

browser.cookies.onChanged.addListener(function(changeInfo) {
  console.log('Cookie changed: ' +
              '\n * Cookie: ' + JSON.stringify(changeInfo.cookie) +
              '\n * Cause: ' + changeInfo.cause +
              '\n * Removed: ' + changeInfo.removed);
});

Beware of browser compatibility.

https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/API/cookies/onChanged

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文