调用showNotification不会显示任何特殊内容

时间:2019-05-10 06:35:04

标签: push-notification google-api

我想在网站上实施Google的Push Notification,并遵循Google的本教程:

https://developers.google.com/web/ilt/pwa/introduction-to-push-notifications

我设法在控制台中显示了推送通知和权限状态,但陷入了使用showNotification方法来显示消息的阶段。

我的代码如下:

Notification.requestPermission(status => {
  console.log('Notification permission status:', status);
});

function displayNotification() {
  if (Notification.permission == 'granted') {
    navigator.serviceWorker.getRegistration().then(function(reg) {
      reg.showNotification('Hello world!');
    });
  }
}

我没有成功浏览视频和实验室。他们只是简单地使用上述代码或类似的代码,并结合了可选数组。

请帮助我确定调用showNotification方法如何修改“推送通知”。

0 个答案:

没有答案