gpt4 book ai didi

javascript - Android 版 Chrome - 不显示通知

转载 作者:行者123 更新时间:2023-11-29 15:29:04 25 4
gpt4 key购买 nike

我在使用 Chrome for Android 标准版和开发版 (51) 时遇到问题。虽然通知 api 在其他浏览器(桌面上的 Chrome 和 Firefox + Android 上的 Firefox)上完美运行,但不幸的是它在移动 chrome 上失败了。浏览器请求通知事件的权限,但不显示它。如上所述,在同一手机上的 Firefox 和桌面版 Chrome 都没有问题。这是我的代码:

handleNotification: function (message) {
if (!Notification) { return; }
if (Notification.permission !== "granted") { Notification.requestPermission(); }
else {
var notification = new Notification(participantsRepository[message.senderID].firstName, {
icon: participantsRepository[message.senderID].photo,
body: message.body,
});
notification.onclick = function () {
this.props.updateViewOnMessengerComponent('threadView');
this.updateCurrentThread(message.thread, true);
}.bind(this);
}
},

有什么解决办法吗?
干杯,Wojtek

最佳答案

我在 Twitter 上向 Alex Russel 询问了这个问题事实证明,我在我的应用程序中使用的遗留通知 API 目前在任何移动版本的 chrome 中都不支持。看起来我必须使用谷歌的官方推送通知 API,特别是对于 android 用户。

关于javascript - Android 版 Chrome - 不显示通知,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36628867/

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