CSS ไม่ใช่การแสดงผลอยู่ในออฟไลน์โหมดใช้บริการทำงานใน Chrome

0

คำถาม

ฉันพยายามที่จะเอาของฉัน PWA ทำงานในโหมดตัดสาย ถึงตอนนี้มันรับใช้แฟ้มทั้งหมดออกจาก localhost แต่งของไวยากรณ์แบบ CSS ไม่ได้จัดการพา. ทุกแฟ้มที่ร้องขอมาจากแคชขอเริ่มสถานะของ 200 ดอลล่าร์คะ (จาวาสคริปต์และ html เป็นงานได้เต็มที่)ของบริการงานเป็นรหัสมอส

self.addEventListener("install", (event) => {
  event.waitUntil(
    caches.open("v1").then((cache) => {
      return cache.addAll([
        "list of assets",        
      ]);
    })
  );
});

self.addEventListener("fetch", function (event) {
  event.respondWith(
    caches.open("v1").then((cache) => {
      if (event.request.url == "http://localhost:3000/") {
        return cache
          .match("http://localhost:3000/index.html")
          .then((response) => {
            console.log({ response });
            return response;
          });
      } else {
        try {
          return cache.match(event.request).then((response) => {
            console.log(response);
            if (response != undefined) {
              console.log({ response: "Loading asset from cache." });
              return response;
            } else {
              let asset = fetch(event.request);
              cache.add(asset);
              return asset;
            }
          });
        } catch (error) {
          console.error(error);
        }
      }
    })
  );
});

1

คำตอบที่ดีที่สุด

0

คุณพยายามเรียกรายการของคุณรูปแบบสไตล์ชีตที่คุณมีรายชื่อของทรัพย์สิน'?

return cache.addAll([
    ‘./css/styles.css'
  ]);
2021-11-23 02:43:10

ใช่มันคือที่นั่นและการสถานะของ 200 ตอนที่ร้องขอฉันลืมพูดถึงเรื่องนั้นฉันยังใช้เร็. มันแค่เกิดขึ้นบนท้องถิ่นเครื่องทำงานสบายดีเป็นปกติเครื่อง.
TK421

ในภาษาอื่นๆ

หน้านี้อยู่ในภาษาอื่นๆ

Русский
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................

ดังอยู่ในนี้หมวดหมู่

ดังคำถามอยู่ในนี้หมวดหมู่