Window:sharedStorage 属性
全局只读 sharedStorage
属性返回当前来源的 WindowSharedStorage
对象。这是使用 共享存储 API 将数据写入共享存储的主要入口点。
注意:sharedStorage
在工作线程内部不可用。它由 Window
实现,并且在共享存储工作线程中也可以使用(参见 SharedStorageWorkletGlobalScope.sharedStorage
,它返回 WorkletSharedStorage
)。
值
WindowSharedStorage
对象实例。
示例
js
window.sharedStorage
.set("ab-testing-group", "0")
.then(console.log("Value saved to shared storage"));
规范
规范 |
---|
共享存储 API # dom-window-sharedstorage |
浏览器兼容性
BCD 表格仅在启用 JavaScript 的浏览器中加载。