首页 > 解决方案 > 推送通知通知关闭事件在关闭通知后 10 - 20 分钟后触发,甚至永远不会触发

问题描述

我想在关闭推送通知后处理一些事情。该notificationclick事件有效,但不用于 X 按钮或滑动通知。这就是我想使用notificationclose事件的原因。问题是notificationclose事件不会触发或在关闭消息后 10 到 20 分钟后触发,但仅在 Chrome 中触发。notificationclose在 Firefox 中完美运行。我能做些什么?

self.addEventListener("notificationclose", function(event) {
    console.log("Hello, world!");
});

标签: javascriptgoogle-chromefirefoxnotifications

解决方案


推荐阅读