我想创建我的第一个PWA应用,我想使用sw-precache
。我想在我的应用中添加推送通知,但我看不到通过push
生成添加notification click
通知和sw-precache
听众的选项。
生成文件后我应该添加某种连接吗?
有谁知道怎么做?
答案 0 :(得分:11)
您可以使用sw-precache
中的importScripts
option添加其他逻辑。
例如,如果您使用以下内容创建push-listener.js
文件:
self.addEventListener('push', event => {
// Your code here.
});
您可以配置sw-precache
进行导入:
{
importScripts: ['path/to/push-listener.js'],
// Other sw-precache options here.
}