将Google chrome更新到版本75后,桌面通知停止工作,但是在Firefox上运行良好,有没有办法解决此问题或任何解决方法来显示桌面通知?提前致谢。 请注意,该应用程序是Web应用程序,而不是chrome扩展程序,以下是桌面通知的示例
Notification.requestPermission();
new Notification ("Desktop notification example")
答案 0 :(得分:1)
新的Notification
规范已更新。您现在需要将其更改为基于诺言的通知语法。代码应该是这样的:
Notification.requestPermission().then(function(permission) {
if(permission === 'granted') {
new Notification ("Desktop notification example")
} else {
console.log('not granted')
}
})
新规范写成here