始终将event.data接收为null,推动事件服务工作者

时间:2018-09-26 07:29:11

标签: firebase curl push-notification postman service-worker

我遇到了同样的问题,但是还不能解决我的问题。 我得到了成功响应和通知栏,但是事件中的数据为空,因此通知栏显示了我提供的静态数据。

enter image description here

这是尸体在过去。

enter image description here

这是标题部分。结果是,

enter image description here

然后成功显示一个推送通知栏。但是数据为空,这就是我主持事件

self.addEventListener('push', function(e) {

console.log(e);



var body;
if (e.data) {
    body = e.data.json();
  } else {
    body = 'Push message no payload';
  }

enter image description here

有人可以帮忙吗?

0 个答案:

没有答案