在我的服务人员中,我有:
console.log('register images')
workbox.routing.registerRoute(
// Cache image files
/.*\.(?:png|jpg|jpeg|svg|gif)/,
// Use the cache if it's available
workbox.strategies.staleWhileRevalidate({
// Use a custom cache name
cacheName:'image-cache'
})
);
(例如)但没有创建这样的缓存。(但预缓存正在工作)
我想我缺少一些基本的东西。似乎找不到解决此问题的示例。
任何帮助,将不胜感激