ServiceWorkerRegistration: index 属性

实验性: 这是一个 实验性技术
在生产环境中使用此功能之前,请仔细查看 浏览器兼容性表

安全上下文: 此功能仅在 安全上下文 (HTTPS) 中可用,并且在部分或所有 支持的浏览器 中可用。

注意: 此功能在 Web Workers 中可用。

indexServiceWorkerRegistration 接口的只读属性,它返回对 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 的浏览器中加载。

另请参阅