blob: ebe167e30f708afe38b17235dd5a49d5b7a27df6 (
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
---
title: 'Window: rejectionhandled event'
slug: Web/API/Window/rejectionhandled_event
tags:
- API
- Evènement
- HTML DOM
- JavaScript
- Promesse
- Reference
- Window
- onrejectionhandled
- rejectionhandled
translation_of: Web/API/Window/rejectionhandled_event
---
<div>{{APIRef("HTML DOM")}}</div>
<p>L'événement <strong><code>rejectionhandled</code></strong> est envoyé à la portée globale du script (généralement {{domxref("window")}} mais aussi {{domxref("Worker")}}) chaque fois qu'un JavaScript {{jsxref("Promise")}} est rejeté mais après que le rejet de la promesse a été traité.</p>
<p>Cela peut être utilisé dans le débogage et pour la résilience générale des applications, en tandem avec l'événement {{domxref ("Window.unhandledrejection_event", "unhandledrejection")}}, qui est envoyé lorsqu'une promesse est rejetée mais qu'il n'y a pas de responsable du rejet .</p>
<table class="properties">
<tbody>
<tr>
<th scope="row">Bulles</th>
<td>Non</td>
</tr>
<tr>
<th scope="row">Annulable</th>
<td>Non</td>
</tr>
<tr>
<th scope="row">Interface</th>
<td>{{domxref("PromiseRejectionEvent")}}</td>
</tr>
<tr>
<th scope="row">Propriété de gestionnaire d'événements</th>
<td>{{domxref("WindowEventHandlers.onrejectionhandled", "onrejectionhandled")}}</td>
</tr>
</tbody>
</table>
<h2 id="Exemple">Exemple</h2>
<p>Vous pouvez utiliser l'événement <code>rejectionhandled</code> pour consigner les promesses rejetées sur la console, ainsi que les raisons pour lesquelles elles ont été rejetées :</p>
<pre class="brush: js">window.addEventListener("rejectionhandled", event => {
console.log("Promise rejected; reason: " + event.reason);
}, false);
</pre>
<h2 id="Spécifications">Spécifications</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Spécification</th>
<th scope="col">Statut</th>
<th scope="col">Commentaire</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('HTML WHATWG', 'webappapis.html#unhandled-promise-rejections', 'rejectionhandled')}}</td>
<td>{{Spec2('HTML WHATWG')}}</td>
<td>Définition initiale.</td>
</tr>
</tbody>
</table>
<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2>
<p>{{Compat("api.Window.rejectionhandled_event")}}</p>
<h2 id="Voir_également">Voir également</h2>
<ul>
<li>{{SectionOnPage("/en-US/docs/Web/JavaScript/Guide/Using_promises", "Promise rejection events")}}</li>
<li>{{domxref("PromiseRejectionEvent")}}</li>
<li>{{jsxref("Promise")}}</li>
<li>{{domxref("Window/unhandledrejection_event", "unhandledrejection")}}</li>
</ul>
|