社区:
ServiceWorker在缓存管理方面是一项非常先进的技术,但我有一些与其他操作相关的问题,例如:
推送通知:我在此article之后进行了GCM集成(Google Clud消息)和NodeJS,问题是当GCM将信息发送到客户端(Chorme)时, GCM生成的消息的有效负载无法在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);
});
这可能还是有意义?
感谢!!!!
答案 0 :(得分:2)