blob: beb503bdea17ce59149f3f79bf938b94619a3c0c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
---
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
---
{{APIRef("Service Workers API")}}
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.
## Syntaxe
serviceWorkerRegistration.getNotifications(options)
.then(function(notificationsList) { ... })
### Paramétres
- options {{optional_inline}}
- : Un objet contenant des options pour filtrer les notifications renvoyées. Les options disponibles sont:
- `tag`: Un {{domxref ("DOMString")}} représentant un tag de notification. Si spécifié, seules les notifications contenant cette balise seront renvoyées.
### Valeur de retour
Une {{jsxref ("Promise", "Promesse")}} qui se résout en une liste d'objets {{domxref ("Notification")}}.
## Exemple
```js
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écifications
| Spécification | État | Commentaire |
| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------- | ------------------- |
| {{SpecName('Web Notifications', '#dom-serviceworkerregistration-getnotifications', 'ServiceWorkerRegistration.getNotifications()')}} | {{Spec2('Web Notifications')}} | Définition initiale |
## Compatibilité des navigateurs
{{Compat("api.ServiceWorkerRegistration.getNotifications")}}
|