2
Android用Chromeの標準とdev(51)に問題があります。通知apiは他のブラウザ(Chromeの& FirefoxはAndroid + Firefox)では完全に動作しますが、残念ながらモバイルChromeで失敗します。ブラウザは通知イベントのアクセス許可を要求しますが、通知イベントは表示されません。上記のように、同じ電話機のFirefoxには、Chromeのデスクトップ版と同様に問題はありません。ここに私のコード:Android用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さん