作者热门文章
- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
当我使用示例文本进行通知时,正在接收消息并且确实弹出通知。
我已经在 Chrome 上为推送通知设置了一个 Google 帐户,但响应似乎是空的。
服务人员
我在 service worker 上有这个,但它是空的。
self.addEventListener('push', function(event) {
//console.log('Received a push message', event);
console.log(event.data);
});
然后还有另外一件事我用 Fetch 尝试过,使用 localhost url。
var url = 'http://localhost/notification/index.php?type=fg';
self.addEventListener('push', function(event) {
event.waitUntil(fetch(url).then(function(response) {
console.log(response);
return response.json();
}).then(function(data) {
console.log(data);
//'data' does't have the json from the url
})
)
});
最佳答案
Chrome 尚不支持推送有效负载,因此第一个代码段仅适用于 Firefox ( https://serviceworke.rs/push-payload.html )。
您的第二种方法应该适用于任何浏览器 ( https://serviceworke.rs/push-get-payload.html)。
关于javascript - 如何将 Google Cloud Messaging 响应获取到 Service worker 的 Chrome 通知事件中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35376981/
我是一名优秀的程序员,十分优秀!