我正在使用工作箱为React项目构建服务工作者,我不确定是什么问题,但是控制台中不断出现错误,提示 无法读取属性'CacheFirst'未定义。
我要获取的路由来自带有sqlite数据库的nodejs后端,返回的数据来自数据库中列出的日期。我不确定这是否与它有关,或者只是一个Workbox问题。每次对此文件进行更新后,我都会执行 workbox injectManifest ,然后使用 serve -s -p3000 build 进行投放浏览器中的应用程序。
importScripts(
"https://storage.googleapis.com/workbox-cdn/releases/4.3.1/workbox-sw.js"
);
if (workbox) {
console.log(`Yay! Workbox is loaded ?`);
} else {
console.log(`Boo! Workbox didn't load ?`);
}
let d = new Date();
let year = d.getFullYear();
let month = d.getMonth() + 1;
let day = d.getDate();
if (month < 10) {
month = "0" + month;
}
if (day < 10) {
day = "0" + day;
}
let today = `${year}-${month}-${day}`;
workbox.routing.registerRoute(
new RegExp(`http://localhost:5000/routes/${today}`),
new workbox.stategies.CacheFirst()
);
workbox.routing.registerRoute(
/^https:\/\/fonts\.googleapis\.com/,
new workbox.strategies.StaleWhileRevalidate({
cacheName: "google-fonts-stylesheets"
})
);
workbox.routing.registerRoute(
/^https:\/\/fonts\.gstatic\.com/,
new workbox.strategies.CacheFirst({
cacheName: "google-fonts-webfonts",
plugins: [
new workbox.cacheableResponse.Plugin({
statuses: [0, 200]
}),
new workbox.expiration.Plugin({
maxAgeSeconds: 60 * 60 * 24 * 365,
maxEntries: 30
})
]
})
);
workbox.precaching.precacheAndRoute([]);
答案 0 :(得分:1)
stategies
拼写错误,应为strategies
。