--- title: ServiceWorkerRegistration slug: Web/API/ServiceWorkerRegistration tags: - API - Interface - NeedsTranslation - Offline - Reference - Service Workers - Service worker API - ServiceWorkerRegistration - TopicStub - Workers translation_of: Web/API/ServiceWorkerRegistration ---
Интерфейс ServiceWorkerRegistration
ссылается на регистрацию Service Worker. Вы можете зарегистрировать Service Worker, чтобы контролировать одну или несколько страниц на одном домене.
The lifetime of a service worker registration is beyond that of the ServiceWorkerRegistration
objects that represent them within the lifetime of their corresponding service worker clients. The browser maintains a persistent list of active ServiceWorkerRegistration
objects.
Эта функция доступна в Web Workers.
Also implements properties from its parent interface, {{domxref("EventTarget")}}.
installing
. This is initially set to null
.waiting
. This is initially set to null
.activating
or activated
. This is initially set to null
. An active worker will control a {{domxref("ServiceWorkerClient")}} if the client's URL falls within the scope of the registration (the scope
option set when {{domxref("ServiceWorkerContainer.register")}} is first called.)EventListener
property called whenever an event of type updatefound
is fired; it is fired any time the {{domxref("ServiceWorkerRegistration.installing")}} property acquires a new service worker.Also implements methods from its parent interface, {{domxref("EventTarget")}}.
In this example, the code first checks whether the browser supports service workers and if so registers one. Next, it adds and updatefound
event in which it uses the service worker registration to listen for further changes to the service worker's state. If the service worker hasn't changed since the last time it was registered, than the updatefound
event will not be fired.
if ('serviceWorker' in navigator) { navigator.serviceWorker.register('/sw.js') .then(function(registration) { registration.addEventListener('updatefound', function() { // If updatefound is fired, it means that there's // a new service worker being installed. var installingWorker = registration.installing; console.log('A new service worker is being installed:', installingWorker); // You can listen for changes to the installing service worker's // state via installingWorker.onstatechange }); }) .catch(function(error) { console.log('Service worker registration failed:', error); }); } else { console.log('Service workers are not supported.'); }
{{Compat}}