blob: 6fb4e8f968687ebea95facd93dccdf8cfba2d2e9 (
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
---
title: DOMRequest
slug: Archive/B2G_OS/API/DOMRequest
tags:
- DOM
- Référence_du_DOM_Gecko
translation_of: Archive/B2G_OS/API/DOMRequest
---
<p>{{ ApiRef() }}</p>
<p>{{ non-standard_header() }}</p>
<p>Un objet <code>DOMRequest</code> représente une opération en cours. Il fournit des callbacks qui sont appelés quand l'operation est finit, ainsi qu'une reférence au résultat de l'opération. Une méthode DOM qui initie une opération se poursuivant au cours du temps, retounera un objet <code>DOMRequest</code> que vous pouvez surveiller pour connaitre le déroulement de l'opération</p>
<h2 id="Attributs">Attributs</h2>
<dl>
<dt>
{{ domxref("DOMRequest.onsuccess") }}</dt>
<dd>
Pour définir un callback à appeler quand l'opération représentée par <code>DOMRequest</code> est terminée</dd>
<dt>
{{ domxref("DOMRequest.onerror") }}</dt>
<dd>
Pour définir un callback qui sera appelé si une erreur survient pendant le déroulement de l'opération.</dd>
<dt>
{{ domxref("DOMRequest.readyState") }}</dt>
<dd>
Une chaîne de caractère indiquant si l'opération tourne toujours. Sa valeur est soit "<code>done</code>" ou "<code>pending</code>".</dd>
<dt>
{{ domxref("DOMRequest.result") }}</dt>
<dd>
Le résultat de l'opération.</dd>
<dt>
{{ domxref("DOMRequest.error") }}</dt>
<dd>
Information de l'erreur, si présent.</dd>
</dl>
<h2 id="Exemple">Exemple</h2>
<p>Un exemple de l'utilisation des propriétés <code>onsuccess</code>, <code>onerror</code>, <code>result</code> et <code>error</code> de l'objet <code>DOMRequest</code>.</p>
<pre class="brush: js">var pending = navigator.mozApps.install(manifestUrl);
pending.onsuccess = function () {
// Enregistre l'objet App renvoyé
var appRecord = this.result;
alert('Installation réussie !');
};
pending.onerror = function () {
// Affiche le nom de l'erreur
alert('Installation échouée, erreur : ' + this.error.name);
};
</pre>
<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2>
<p>{{ CompatibilityTable() }}</p>
<div id="compat-desktop">
<table class="compat-table">
<tbody>
<tr>
<th>Fonction</th>
<th>Chrome</th>
<th>Firefox (Gecko)</th>
<th>Internet Explorer</th>
<th>Opera</th>
<th>Safari</th>
</tr>
<tr>
<td>Support de base</td>
<td>{{ CompatUnknown() }}</td>
<td>{{ CompatGeckoDesktop("13.0") }}</td>
<td>{{ CompatUnknown() }}</td>
<td>{{ CompatUnknown() }}</td>
<td>{{ CompatUnknown() }}</td>
</tr>
</tbody>
</table>
</div>
<div id="compat-mobile">
<table class="compat-table">
<tbody>
<tr>
<th>Fonction</th>
<th>Android</th>
<th>Chrome pour Android</th>
<th>Firefox Mobile (Gecko)</th>
<th>IE Mobile</th>
<th>Opera Mobile</th>
<th>Safari Mobile</th>
</tr>
<tr>
<td>Support de base</td>
<td>{{ CompatUnknown() }}</td>
<td>{{ CompatUnknown() }}</td>
<td>{{ CompatGeckoMobile("13.0") }}</td>
<td>{{ CompatUnknown() }}</td>
<td>{{ CompatUnknown() }}</td>
<td>{{ CompatUnknown() }}</td>
</tr>
</tbody>
</table>
</div>
<h2 id="Spécification">Spécification</h2>
<p>Ne fait actuellement partie d'aucune spécification</p>
|