草案
此页面不完整。
ContentIndexEvent
接口在
Content Index API
defines the object used to represent the
contentdelete
事件。
This event is sent to the
global scope
的
ServiceWorker
. It contains the id of the indexed content to be removed.
contentdelete
event is only fired when the deletion happens due to interaction with the browser's built-in user interface. It is not fired when the
ContentIndex.delete
方法被调用。
ContentIndexEvent()
ContentIndexEvent
object whose type and other options are configured as specified.
In addition to the properties listed below, this interface inherits the properties of its parent interface,
ExtendableEvent
.
While
ContentIndexEvent
offers no methods of its own, it inherits any specified by its parent interface,
ExtendableEvent
.
This example shows the
sevice worker
script listening for the
contentdelete
event and logs the removed content index id.
self.addEventListener('contentdelete', (event) => {
console.log(event.id);
// logs content index id, which can then be used to determine what content to delete from your cache
});
| 规范 | 状态 | 注释 |
|---|---|---|
|
未知
The definition of 'ContentIndexEvent' in that specification. |
未知 | 初始定义。 |
No compatibility data found. Please contribute data for "api.ContentIndexEvent" (depth: 1) to the MDN 兼容性数据存储库 .