--- title: ServiceWorkerRegistration.getNotifications() slug: Web/API/ServiceWorkerRegistration/getNotifications tags: - API - API Service worker - Expérimentale - Méthode - Notifications - Reference - Service Workers - ServiceWorkerRegistration - getNotifications translation_of: Web/API/ServiceWorkerRegistration/getNotifications ---
La méthode getNotifications()
de l'interface {{domxref ("ServiceWorkerRegistration")}} renvoie une liste des notifications dans l'ordre dans lequel elles ont été créées à partir de l'origine actuelle via l'enregistrement actuel du service worker. Les origines peuvent avoir de nombreuses inscriptions de service worker actives mais de portée différente. Les notifications créées par un service worker sur la même origine ne seront pas disponibles pour les autres services workers actifs sur la même origine.
serviceWorkerRegistration.getNotifications(options) .then(function(notificationsList) { ... })
tag
: Un {{domxref ("DOMString")}} représentant un tag de notification. Si spécifié, seules les notifications contenant cette balise seront renvoyées.Une {{jsxref ("Promise", "Promesse")}} qui se résout en une liste d'objets {{domxref ("Notification")}}.
navigator.serviceWorker.register('sw.js') const options = { tag: 'user_alerts' } navigator.serviceWorker.ready.then((registration) => { registration.getNotifications(options).then((notifications) => { // do something with your notifications }) })
Spécification | État | Commentaire |
---|---|---|
{{SpecName('Web Notifications', '#dom-serviceworkerregistration-getnotifications', 'ServiceWorkerRegistration.getNotifications()')}} | {{Spec2('Web Notifications')}} | Définition initiale |
{{Compat("api.ServiceWorkerRegistration.getNotifications")}}