From 33058f2b292b3a581333bdfb21b8f671898c5060 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:40:17 -0500 Subject: initial commit --- .../install_event/index.html | 96 ++++++++++++++++++++++ 1 file changed, 96 insertions(+) create mode 100644 files/ja/web/api/serviceworkerglobalscope/install_event/index.html (limited to 'files/ja/web/api/serviceworkerglobalscope/install_event/index.html') diff --git a/files/ja/web/api/serviceworkerglobalscope/install_event/index.html b/files/ja/web/api/serviceworkerglobalscope/install_event/index.html new file mode 100644 index 0000000000..6a7c58292b --- /dev/null +++ b/files/ja/web/api/serviceworkerglobalscope/install_event/index.html @@ -0,0 +1,96 @@ +--- +title: 'ServiceWorkerGlobalScope: install event' +slug: Web/API/ServiceWorkerGlobalScope/install_event +tags: + - API + - Reference + - Service Worker + - ServiceWorkerGlobalScope + - events + - install +translation_of: Web/API/ServiceWorkerGlobalScope/install_event +--- +

{{DefaultAPISidebar("Service Workers API")}}

+ +

{{domxref("ServiceWorkerGlobalScope")}} インターフェイスの install イベントは、{{domxref("ServiceWorkerRegistration")}} が新しいインストール中のワーカー({{domxref("ServiceWorkerRegistration.installing")}} worker)を取得すると発生します。

+ + + + + + + + + + + + + + + + + + + + +
バブリングなし
キャンセル不可
インターフェイス{{domxref("ExtendableEvent")}}
イベントハンドラープロパティ{{domxref("ServiceWorkerGlobalScope.oninstall")}}
+ +

+ +

次のスニペットは、install イベントハンドラーを使用してキャッシュに多数のレスポンスを設定する方法を示しています。 サービスワーカーはこれを使用して、資産をオフラインで提供できます。

+ +
this.addEventListener('install', function(event) {
+  event.waitUntil(
+   caches.open('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'
+     );
+   })
+   );
+});
+ +

次のように {{domxref("ServiceWorkerGlobalScope.oninstall")}} プロパティを使用してイベントハンドラーを設定することもできます。

+ +
globalScope.oninstall = function(event) {
+  ...
+};
+ +

仕様

+ + + + + + + + + + + + + + +
仕様状態コメント
{{SpecName('Service Workers', '#service-worker-global-scope-install-event', 'install')}}{{Spec2('Service Workers')}}
+ +

ブラウザーの互換性

+ + + +

{{Compat("api.ServiceWorkerGlobalScope.install_event")}}

+ +

関連情報

+ + -- cgit v1.2.3-54-g00ecf