社区:
ServiceWorker 在缓存管理方面是一项非常先进的技术,但我有一些与其他操作相关的问题,例如:
推送通知:我做了一个 GCM 集成(Google Clud Message)和 NodeJS,按照这篇文章,问题是当 GCM 将信息发送到客户端(Chorme)时,GCM 生成的消息的有效负载在 Notification 中无法访问在 ServiceWorker Listener 中,这对于做出决策非常有用。任何想法何时启用通知中的数据有效负载?
注册:由于 ES6 已经非常成熟,可以通过其他方式注册一个 ServiceWorker,例如:
import sw from './sw.js'
navigator.serviceWorker.register(sw, {scope: '/'}).then(function (registration) {
// Registration was successful
console.log('ServiceWorker registration successful with scope: ', registration.scope);
}).catch(function (err) {
// registration failed :(
console.log('ServiceWorker registration failed: ', err);
});
这是可能的还是有意义的?
谢谢!!!!