问题描述
我在 PWA 中创建了一个应用程序,当我在手机上收到通知(推送)并点击它时,它有时会打开该应用程序,有时却不起作用。
我不知道发生了什么,有人可以帮助我吗?这是serviceworker.js的代码,我发送通知的部分和打开APP的部分。
var link_push = "";
self.addEventListener('push',function(event) {
texto = JSON.parse(event.data.text());
link_push = texto.link;
const title = texto.title;
const options = {
body: texto.body,icon: 'app/img/push/icon.png',badge: 'app/img/push/badge.png',vibrate: [300,60,400]
};
event.waitUntil(self.registration.showNotification(title,options));
});
self.addEventListener('notificationclick',function(event) {
if(link_push !== "") {
clients.openWindow(link_push);
link_push = "";
}
event.notification.close();
});
有人遇到过这种情况吗?
解决方法
暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!
如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。
小编邮箱:dio#foxmail.com (将#修改为@)