我使用Service Worker模块创建了一个angular 6应用程序。
当应用程序注册服务工作者时,它将尝试将信息保存到CacheStorage中。
CacheStorage为空,第100行有ngsw-worker呼叫
const table = this.scope.caches.open(`ngsw:db:${name}`)
.then(cache => new CacheTable(name, cache, this.adapter));
解决Promise后,缓存变量未定义。 为什么?
谢谢。