如何在角度5中实施服务人员

时间:2019-01-09 09:39:30

标签: service angular5 progressive-web-apps worker

在角度5中使用服务人员, 无需在app.component.ts中导入服务工作者模块, 这可能吗 使用此文件。

const cacheName = 'pages-v2';
function cacheAssets() {
    return caches.open(cacheName)
    .then(function (cache) {
        return cache.addAll([
           '/',
        ]);
    });
}

self.addEventListener('install', function (event) {
    console.log('installing sw..');
    event.waitUntil(
   cacheAssets()
)
});

0 个答案:

没有答案