远程通知不会触发notificationclick
Posted
技术标签:
【中文标题】远程通知不会触发notificationclick【英文标题】:notificationclick is not fired for remote notifications 【发布时间】:2021-02-16 12:55:57 【问题描述】:我在我的服务人员中使用self.addEventListener('notificationclick', function(event) )
来监听点击通知
notificationclick 事件被触发以指示由 ServiceWorkerRegistration.showNotification() 生成的系统通知已被点击。
当我使用ServiceWorkerRegistration.showNotification
并单击通知时它触发了侦听器,但是当我有远程通知时它没有触发,我必须从服务器设置actions
,如果用户单击它触发的操作按钮,但如果单击通知本身,它不会被触发
有什么解决办法吗?
【问题讨论】:
notificationclick
应该也适用于点击主通知,而不仅仅是操作按钮。它对我来说很好,所以你的问题在你的特定代码中的其他地方。
你的浏览器是什么?
【参考方案1】:
firebase-messaging.js 有以下代码。
self.addEventListener("notificationclick", function(event)
event.stopImmediatePropagation();
event.notification.close();
在加载库之前定义我的通知点击函数。
self.addEventListener("notificationclick", function(event)
console.log('notification open');
// log send to server
);
importScripts('https://www.gstatic.com/firebasejs/8.6.2/firebase-app.js');
importScripts('https://www.gstatic.com/firebasejs/8.6.2/firebase-messaging.js');
firebase.initializeApp(
'messagingSenderId': 'xxxxx'
);
const messaging = firebase.messaging();
【讨论】:
以上是关于远程通知不会触发notificationclick的主要内容,如果未能解决你的问题,请参考以下文章
无法在“notificationclick”事件中为 chrome 加载 GCM 推送通知的数据 URL
Push web api,notificationclick,如何打开桌面客户端而不是打开新的浏览器客户端
ServiceWorker 在生命周期后期声称在 notificationclick 事件处理程序中使用 client.navigate