--- title: ExtendableEvent slug: Web/API/ExtendableEvent tags: - API - Experimental - ExtendableEvent - Interface - NeedsTranslation - Offline - Reference - Service Workers - ServiceWorker - TopicStub - Workers translation_of: Web/API/ExtendableEvent ---
{{APIRef("Service Workers API")}}{{SeeCompatTable}}
作为 service worker 生命周期的一部分,ExtendableEvent接口延长了在全局范围上{{event("install")}}和{{event("activate")}}事件的生命周期。这样可以确保在升级数据库架构并删除过时的caches之前,不会调度任何函数事件(如{{domxref("FetchEvent")}})。
如果在ExtendableEvent处理程序之外调用{{domxref("ExtendableEvent.waitUntil","waitUntil()")}},浏览器应该抛出一个InvalidStateError;还要注意,多个调用将堆积起来,结果promises 将添加到extend lifetime promises.
 

提示: 上述段落中描述的行为在firefox 43中得到了修复(参见 {{bug(1180274)}} )。

此接口继承自{{domxref("Event")}}接口。

{{InheritanceDiagram(700, 60, 20)}}

提示: 只有当全局范围是 {{domxref("ServiceWorkerGlobalScope")}} 时,此接口才可用。当它是一个 {{domxref("Window")}} 或其他类型 worker 的作用域时,它不可用。

构造函数

{{domxref("ExtendableEvent.ExtendableEvent()", "ExtendableEvent()")}}
创建新的ExtendableEvent对象。

特性

不实现任何特定属性,但从其父级事件继承属,{{domxref("Event")}}

方法

从他的父辈继承, {{domxref("Event")}}.

{{domxref("ExtendableEvent.waitUntil", "ExtendableEvent.waitUntil()")}}

延长事件的生存期。它将在service worker 的 installactivate 事件中被调用。

实例

代码片段来自service worker prefetch sample (查看 prefetch example live.)。代码在{{domxref("ServiceWorkerGlobalScope.oninstall")}}中调用{{domxref("ExtendableEvent.waitUntil()")}},延迟将{{domxref("ServiceWorkerRegistration.installing")}} Worker视为已安装,直到传递的promise resolve(在所有资源都已被提取和缓存的情况,或者发生任何异常时的问题.)

代码段还显示了对service worker使用的缓存进行版本控制的最佳实践。虽然在这个例子中只有一个缓存,但是相同的方法可以用于多个缓存。它将缓存的速记标识符映射到特定的、版本化的缓存名称。

提示:在chrome中,日志记录语句通过chrome://service worker internals访问的相关服务工作者的“inspect”接口可见。

var CACHE_VERSION = 1;
var CURRENT_CACHES = {
  prefetch: 'prefetch-cache-v' + CACHE_VERSION
};

self.addEventListener('install', function(event) {
  var urlsToPrefetch = [
    './static/pre_fetched.txt',
    './static/pre_fetched.html',
    'https://www.chromium.org/_/rsrc/1302286216006/config/customLogo.gif'
  ];

  console.log('Handling install event. Resources to pre-fetch:', urlsToPrefetch);

  event.waitUntil(
    caches.open(CURRENT_CACHES['prefetch']).then(function(cache) {
      cache.addAll(urlsToPrefetch.map(function(urlToPrefetch) {
        return new Request(urlToPrefetch, {mode: 'no-cors'});
      })).then(function() {
        console.log('All resources have been fetched and cached.');
      });
    }).catch(function(error) {
      console.error('Pre-fetching failed:', error);
    })
  );
});
重点: 在获取资源时,如果有可能资源是由不支持 CORS 的服务器提供的,那么使用 {mode: 'no-cors'} 非常重要。在本例中, www.chromium.org 不支持CORS。

Specifications

Specification Status Comment
{{SpecName('Service Workers', '#extendable-event', 'ExtendableEvent')}} {{Spec2('Service Workers')}} Initial definition.

Browser compatibility

{{CompatibilityTable}}
Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari (WebKit)
Basic support {{CompatChrome(40.0)}} {{ CompatGeckoDesktop("44.0") }}[1] {{CompatNo}} 24 {{CompatNo}}
async waitUntil() {{CompatUnknown}} {{ CompatGeckoDesktop("53.0") }}[2] {{CompatNo}} {{CompatUnknown}} {{CompatNo}}
Feature Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile Chrome for Android
Basic support {{CompatNo}} {{ CompatGeckoMobile("44.0") }} {{CompatNo}} {{CompatUnknown}} {{CompatNo}} {{CompatChrome(40.0)}}
async waitUntil() {{CompatNo}} {{ CompatGeckoMobile("53.0") }}[2] {{CompatNo}} {{CompatUnknown}} {{CompatNo}} {{CompatUnknown}}

[1] Service workers (and Push) have been disabled in the Firefox 45 & 52 Extended Support Releases (ESR.)

[2] {{domxref("ExtendableEvent.waitUntil", "ExtendableEvent.waitUntil()")}} can now be called asynchronously (see {{bug(1263304)}}).

See also