--- title: ServiceWorkerGlobalScope.oninstall slug: Web/API/ServiceWorkerGlobalScope/oninstall tags: - API - Property - Reference - Service Worker - ServiceWorker - ServiceWorkerGlobalScope - oninstall translation_of: Web/API/ServiceWorkerGlobalScope/oninstall ---
{{SeeCompatTable}}{{APIRef("Service Workers API")}}
{{domxref("ServiceWorkerGlobalScope")}} インターフェースの oninstall プロパティは、(Service Worker がインストールされたときの){{Event("install")}} イベントが発生するたびに発火するイベントハンドラーです。これはアクティブ化の前に発生します。
ServiceWorkerGlobalScope.oninstall = function(event) { ... }; ServiceWorkerGlobalScope.addEventListener('install', function(event) { ... });
次のスニペットは Using Service Workers のものです。詳細はそちらをご覧ください。
this.addEventListener('install', function(event) { event.waitUntil( caches.create('v1').then(function(cache) { return cache.add( '/sw-test/', '/sw-test/index.html', '/sw-test/style.css', '/sw-test/app.js', '/sw-test/image-list.js', '/sw-test/star-wars-logo.jpg', '/sw-test/gallery/', '/sw-test/gallery/bountyHunters.jpg', '/sw-test/gallery/myLittleVader.jpg', '/sw-test/gallery/snowTroopers.jpg' ); }) ); });
仕様 | ステータス | コメント |
---|---|---|
{{SpecName('Service Workers', '#service-worker-global-scope-event-handlers', 'Event Handlers')}} | {{Spec2('Service Workers')}} | 初期定義。 |
機能 | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
---|---|---|---|---|---|
基本サポート | {{CompatChrome(40.0)}} | {{ CompatGeckoDesktop("44.0") }}[1] | {{CompatNo}} | {{CompatUnknown}} | {{CompatNo}} |
機能 | Android | Firefox Mobile (Gecko) | Firefox OS | IE Mobile | Opera Mobile | Safari Mobile | Chrome for Android |
---|---|---|---|---|---|---|---|
基本サポート | {{CompatUnknown}} | {{ CompatGeckoMobile("44.0") }} | {{ CompatVersionUnknown }} | {{CompatNo}} | {{CompatUnknown}} | {{CompatNo}} | {{CompatChrome(40.0)}} |
[1] Service worker(と Push)は、Firefox 45 延長サポート版(ESR)では使用できません。