gpt4 book ai didi

firebase - 将 PWA 安装到主屏幕后,我的通知徽章图标未显示

转载 作者:行者123 更新时间:2023-12-04 20:28:32 25 4
gpt4 key购买 nike

我有一个能够接收推送通知的移动网站。 firebase-messaging-sw.js 上的一些代码如下,

 messaging.setBackgroundMessageHandler(function(payload) {
console.log('[firebase-messaging-sw.js] Received background message ', payload);
// Customize notification here
var notificationTitle = payload.data.title;
var notificationOptions = {
body: payload.data.body,
icon: payload.data.icon,
data: payload.data.click_action,
badge: "{icon url}",
image: payload.data.image,
tag: payload.data.unique_id
};


return self.registration.showNotification(notificationTitle,
notificationOptions);
});

当我在移动 Chrome 上允许通知时,通知显示完美,我定制的徽章标志显示在通知栏上。但是当我点击“添加到主屏幕”后,通知徽章图标变成了默认的钟形图标。为什么会这样,有什么方法可以改变它?

谢谢你。

最佳答案

这是 Chrome 中的一个已知错误。他们已经修复了 in this commit .

该错误修复将于 9 月 4 日(明天)随 Chrome 69 一起推出。您可以在此处检查推出状态:https://www.chromestatus.com/features/schedule

关于firebase - 将 PWA 安装到主屏幕后,我的通知徽章图标未显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51835637/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com