我已经创建了pwa angular app,我想添加通知支持。我有一个后端服务器-Java Spring,我从服务器Web套接字消息发送到客户端,每条消息我都要显示一个通知。
我尝试使用此api https://github.com/sagiegurari/simple-web-notification
navigator.serviceWorker.getRegistration().then((registration) => {
...
webNotification.showNotification(title, {
serviceWorkerRegistration: registration,
我不知道为什么它对我不起作用。它可以在Firefox上运行,但不能在Chrome上运行。请提供帮助。