Procházet zdrojové kódy

bug fix: 谷歌浏览器在某些情况下打开紧急救灾会失败

任一存 před 1 rokem
rodič
revize
5f21739b22
1 změnil soubory, kde provedl 26 přidání a 26 odebrání
  1. 26 26
      game/public/unity/disaster-relief/ServiceWorker.js

+ 26 - 26
game/public/unity/disaster-relief/ServiceWorker.js

@@ -1,33 +1,33 @@
-const cacheName = "4dage-RacingCar-0.1.0";
+const cacheName = "4dage-RacingCar-0.1.0"
 const contentToCache = [
-    "Build/Build.loader.js",
-    "Build/Build.framework.js.unityweb",
-    "Build/Build.data.unityweb",
-    "Build/Build.wasm.unityweb",
-    "TemplateData/style.css"
+  "Build/Build.loader.js",
+  "Build/Build.framework.js.unityweb",
+  "Build/Build.data.unityweb",
+  "Build/Build.wasm.unityweb",
+  "TemplateData/style.css"
 
-];
+]
 
 self.addEventListener('install', function (e) {
-    console.log('[Service Worker] Install');
-    
-    e.waitUntil((async function () {
-      const cache = await caches.open(cacheName);
-      console.log('[Service Worker] Caching all: app shell and content');
-      await cache.addAll(contentToCache);
-    })());
-});
+  console.log('[Service Worker] Install')
+
+  e.waitUntil((async function () {
+    const cache = await caches.open(cacheName)
+    console.log('[Service Worker] Caching all: app shell and content')
+    await cache.addAll(contentToCache)
+  })())
+})
 
 self.addEventListener('fetch', function (e) {
-    e.respondWith((async function () {
-      let response = await caches.match(e.request);
-      console.log(`[Service Worker] Fetching resource: ${e.request.url}`);
-      if (response) { return response; }
+  e.respondWith((async function () {
+    let response = await caches.match(e.request)
+    console.log(`[Service Worker] Fetching resource: ${e.request.url}`)
+    if (response) { return response }
 
-      response = await fetch(e.request);
-      const cache = await caches.open(cacheName);
-      console.log(`[Service Worker] Caching new resource: ${e.request.url}`);
-      cache.put(e.request, response.clone());
-      return response;
-    })());
-});
+    response = await fetch(e.request)
+    const cache = await caches.open(cacheName)
+    console.log(`[Service Worker] Caching new resource: ${e.request.url}`)
+    // cache.put(e.request, response.clone())
+    return response
+  })())
+})