ContentIndex.add() - Web APIs 编辑

Draft

This page is not complete.

The add() method of the ContentIndex interface registers an item with the content index.

Syntax

ContentIndex.add(ContentDescription).then(...);

Parameters

ContentDescription
An Object containing the following data:
  • id: A unique String identifier.
  • title: A String title for the item. Used in user-visible lists of content.
  • title: A String title of the item. Used in user-visible lists of content.
  • description: A String description of the item. Used in user-visible lists of content.
  • url: A String containing the url of the corresponding HTML document. Needs to be under the scope of the current service worker.
  • category: Optional A String defining the category of content. Can be:
    • '' An empty String, this is the default.
    • homepage
    • article
    • video
    • audio
  • icons: Optional An Array of image resources, defined as an Object with the following data:
    • src: A url String of the source image.
    • sizes: Optional A String representation of the image size.
    • type: Optional The MIME type of the image.

Return value

Returns a Promise that resolves with undefined

Exceptions

TypeError
If the service worker's registration is not present or the service worker does not contain a FetchEvent.
If the id, title, description or url are missing, not of type String, or an empty String.
If icons images are not of image type.

Examples

Here we're declaring an item in the correct format and creating an asynchronous function which uses the add method to register it with the content index.

// our content
const item = {
  id: 'post-1',
  url: '/posts/amet.html',
  title: 'Amet consectetur adipisicing',
  description: 'Repellat et quia iste possimus ducimus aliquid a aut eaque nostrum.',
  icons: [{
    src: '/media/dark.png',
    sizes: '128x128',
    type: 'image/png',
  }],
  category: 'article'
};

// our asynchronous function to add indexed content
async function registerContent(data) {
  const registration = await navigator.serviceWorker.ready;

  // feature detect Content Index
	if (!registration.index) {
		return;
	}

  // register content
  try {
		await registration.index.add(data);
  } catch (e) {
    console.log('Failed to register content: ', e.message);
  }
}

The add method can also be used within the service worker scope.

// our content
const item = {
  id: 'post-1',
  url: '/posts/amet.html',
  title: 'Amet consectetur adipisicing',
  description: 'Repellat et quia iste possimus ducimus aliquid a aut eaque nostrum.',
  icons: [{
    src: '/media/dark.png',
    sizes: '128x128',
    type: 'image/png',
  }],
  category: 'article'
};

self.registration.index.add(item);

Specifications

SpecificationStatusComment
Content Index API
The definition of 'add' in that specification.
Editor's DraftInitial definition.

Browser compatibility

BCD tables only load in the browser

See also

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

词条统计

浏览:63 次

字数:7165

最后编辑:7年前

编辑次数:0 次

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