ServiceWorkerRegistration.getNotifications() - Web APIs 编辑
The getNotifications()
method of the ServiceWorkerRegistration
interface returns a list of the notifications in the order that they were created from the current origin via the current service worker registration. Origins can have many active but differently-scoped service worker registrations. Notifications created by one service worker on the same origin will not be available to other active services workers on that same origin.
Syntax
serviceWorkerRegistration.getNotifications(options) .then(function(notificationsList) { ... });
Parameters
- options Optional
- An object containing options to filter the notifications returned. The available options are:
tag
: ADOMString
representing a notification tag. If specified, only notifications that have this tag will be returned.
Return value
A Promise
that resolves to a list of Notification
objects.
Example
navigator.serviceWorker.register('sw.js');
var options = { tag : 'user_alerts' };
navigator.serviceWorker.ready.then(function(registration) {
registration.getNotifications(options).then(function(notifications) {
// do something with your notifications
})
});
Specifications
Specification | Status | Comment |
---|---|---|
Notifications API The definition of 'ServiceWorkerRegistration.getNotifications()' in that specification. | Living Standard | Initial definition |
Browser compatibility
BCD tables only load in the browser
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论