Create Firebase notification with page in foreground/focus

前端 未结 3 1149
Happy的楠姐
Happy的楠姐 2020-12-30 05:25

With Firebase Cloud Messaging (for web), how can I generate the notification that appears when the webpage is closed or in the background, but when I\'m actually focused on

3条回答
  •  心在旅途
    2020-12-30 05:40

    More clean approach would be:

    messaging.onMessage(payload => {
      const {title, ...options} = payload.notification;
      navigator.serviceWorker.ready.then(registration => {
        registration.showNotification(title, options);
      });
    });
    

提交回复
热议问题