ServiceWorkerRegistration: index 属性
注意: 此功能在 Web Workers 中可用。
index
是 ServiceWorkerRegistration
接口的只读属性,它返回对 ContentIndex
接口的引用,该接口允许对离线内容进行索引。
值
一个 ContentIndex
对象。
示例
您可以从主脚本或已注册的服务工作者中访问该属性。
以下是从主脚本中的一个示例
js
// reference registration
const registration = await navigator.serviceWorker.ready;
// feature detection
if ("index" in registration) {
// Content Index API functionality
const contentIndex = registration.index;
}
从 服务工作者
js
// service worker script
const contentIndex = self.registration.index;
规范
规范 |
---|
内容索引 # dom-serviceworkerregistration-index |
浏览器兼容性
BCD 表仅在启用了 JavaScript 的浏览器中加载。