单击推送通知会同时触发firefox中的notifyclick和notificationclose事件

问题描述

我使用FCM进行推送通知。在服务工作者js文件中,我有两个处理程序:

self.addEventListener('notificationclose',(event) => {
  console.log('close')
})
self.addEventListener('notificationclick',(event) => {
  event.notification.close()

  /* some actions in event.waitUntill()*/

  return clients.openWindow(redirectUrl) 
})

用户在chrome中的推送通知上单击关闭时,仅触发 notificationclick 处理程序。但是在Firefox中都是。

firebase-js-sdk将event.stopImmediatePropagation()添加 notificationclick 处理程序。但是由于某种原因,它在Firefox中不起作用。

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)