--- title: ServiceWorkerGlobalScope slug: Web/API/ServiceWorkerGlobalScope translation_of: Web/API/ServiceWorkerGlobalScope ---
ServiceWorker API 的ServiceWorkerGlobalScope 接口,代表一个service worker的全局执行上下文。
开发者应该知道, ServiceWorker 的状态在结束/重启的循环中不是一直保持不变的,所以每个事件处理器应该设定一个默认的全局状态。
一旦成功地注册了service worker,为了节省内存和处理器,它将在他的状态达到了空闲的时候被终止。 一个在激活状态的service worker为了响应事件是可以自动重启的,就像这两个方法, {{domxref("ServiceWorkerGlobalScope.onfetch")}} 或者{{domxref("ServiceWorkerGlobalScope.onmessage")}}.
此外, 在service worker中, 同步请求是被禁止的 - 只有异步请求,如方法{{domxref("GlobalFetch.fetch", "fetch()")}} 才被允许.
该接口继承自 {{domxref("WorkerGlobalScope")}} 接口, 以及其父类 {{domxref("EventTarget")}}, 因此继承属性来自 {{domxref("WindowTimers")}}, {{domxref("WindowBase64")}}, 和 {{domxref("WindowEventHandlers")}}.
{{InheritanceDiagram(700, 85, 20)}}
event.data.port, corresponding to the controlled page.ServiceWorkerGlobalScope implements {{domxref("WorkerGlobalScope")}} — which implements {{domxref("GlobalFetch")}}. Therefore it also has the following property available to it:
This code snippet is from the service worker prefetch sample (see prefetch example live.) The {{domxref("ServiceWorkerGlobalScope.onfetch")}} event handler listens for the fetch event. When fired, the code returns a promise that resolves to the first matching request in the {{domxref("Cache")}} object. If no match is found, the code fetches a response from the network.
The code also handles exceptions thrown from the {{domxref("GlobalFetch.fetch", "fetch()")}} operation. Note that an HTTP error response (e.g., 404) will not trigger an exception. It will return a normal response object that has the appropriate error code set.
self.addEventListener('fetch', function(event) {
console.log('Handling fetch event for', event.request.url);
event.respondWith(
caches.match(event.request).then(function(response) {
if (response) {
console.log('Found response in cache:', response);
return response;
}
console.log('No response found in cache. About to fetch from network...');
return fetch(event.request).then(function(response) {
console.log('Response from network is:', response);
return response;
}, function(error) {
console.error('Fetching failed:', error);
throw error;
});
})
);
});
| 规范 | 状态 | 备注 |
|---|---|---|
| {{SpecName('Service Workers', '#service-worker-global-scope', 'ServiceWorkerGlobalScope')}} | {{Spec2('Service Workers')}} | Initial definition |
| {{SpecName('Fetch', '#concept-fetch', 'Fetch')}} | {{Spec2('Fetch')}} | Adds the {{domxref("ServiceWorkerGlobalScope.fetch", "fetch")}} method. |
| {{SpecName('Push API', '#widl-ServiceWorkerGlobalScope-onpush', 'onpush')}} | {{Spec2('Push API')}} | Adds the {{domxref("ServiceWorkerGlobalScope.onpush", "onpush")}} and {{domxref("ServiceWorkerGlobalScope.onpushsubscriptionchange", "onpushsubscriptionchange")}} event handlers. |
| {{SpecName('Web Notifications','#dom-serviceworkerglobalscope-onnotificationclick','onnotificationclick')}} | {{Spec2('Web Notifications')}} | Adds the {{domxref("ServiceWorkerGlobalScope.onnotificationclick", "onnotificationclick")}} event handler. |
| {{SpecName('Background Sync','#sync-event','onsync')}} | {{Spec2('Background Sync')}} | Adds the {{domxref("ServiceWorkerGlobalScope.onsync","onsync")}} event. |