gpt4 book ai didi

push-notification - 一段时间后如何隐藏推送通知?

转载 作者:行者123 更新时间:2023-12-04 07:44:55 25 4
gpt4 key购买 nike

我必须在 1 分钟后隐藏推送通知。我应该在我的 Service Worker 中做些什么来实现这一点?

最佳答案

您可以使用 Notification.close() method .你可以得到Notification带有 ServiceWorkerRegistration.getNotifications 的对象.

例如:

self.addEventListener('push', event => {
event.waitUntil(
self.registration.showNotification('Title', {
body: 'Body.',
})
.then(() => self.registration.getNotifications())
.then(notifications => {
setTimeout(() => notifications.forEach(notification => notification.close()), 60000);
})
);
});

关于push-notification - 一段时间后如何隐藏推送通知?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38549931/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com