我有一个服务工作者从服务器获取多个通知。问题是Chrome中的所有通知都会自动关闭,但最后一个通知除外。我做错了什么?
self.addEventListener('push', function(event) {
var subscriptionId;
var sessionId;
var notification = {};
event.waitUntil(
self.registration.pushManager.getSubscription().then(function(subscription) {
subscriptionId = subscription.endpoint.split('/');
subscriptionId = subscriptionId[subscriptionId.length - 1];
notification.title = 'Yay a message.';
notification.icon = '/app/img/icon-256x256.png';
notification.tag = 'notification-tag-' + (new Date)*1;
notification.messages = [];
//get context
fetch(requestUrl,
{
method: 'post',
body: body
}).then(function(response) {
response.json().then(function(data) {
sessionId = response.headers.get('SessionId');
fetch(requestUrl + '?SessionId=' + sessionId, {
method: 'post',
headers: JSON.stringify({
'Content-Type': 'application/json'
}),
body: JSON.stringify({
data: {
subscriberId: subscriptionId
}
})
}).then(function(responce) {
responce.json().then(function(data) {
data = data.data;
if (!data.chromeNotifications || !data.chromeNotifications.length) return;
data.chromeNotifications.forEach(function(push) {
notification.messages.push(push.message);
});
}).then(function() {
var promises = [];
for(var i=0; notification.messages && i<notification.messages.length; i++) {
promises.push(self.registration.showNotification(notification.title, {
body: notification.messages[i],
icon: notification.icon,
tag: notification.tag
}));
}
return Promise.all( promises );
});
});
})
});
}).catch(function(error) {
console.error('Unable to get subscription data', error);
var title = 'An error occurred';
var message = 'We were unable to get the information for this push message';
var notificationTag = 'notification-error';
return self.registration.showNotification(title, {
body: message,
tag: notificationTag
});
})
);
答案 0 :(得分:5)
在从您的服务器获取待处理通知之前,在您的示例的第13行,您将tag
设置为传入Push消息的唯一一次。然后,此tag
将用于从服务器获取的每条消息,在第47行。
通知的tag
可用于指示在创建通知时,应尝试在显示全新通知之前替换之前共享相同tag
的任何通知。在这种情况下,您将反复覆盖以前的通知。
解决方案是根本不使用tag
,因为无论如何你都希望它是唯一的。保留它以用于您的错误通知是有意义的 - 如果您显示两次,它不会帮助用户。