blob: 8385dcbafae6a4a7fc271526490d5623479bb71a (
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
|
---
title: PerformanceResourceTiming.toJSON()
slug: Web/API/PerformanceResourceTiming/toJSON
tags:
- API
- Method
- Méthode
- Reference
- Performance Web
- Resource Timing API
- toJSON()
translation_of: Web/API/PerformanceResourceTiming/toJSON
---
<div>{{APIRef("Resource Timing API")}}</div>
<p>La méthode <strong><code>toJSON()</code></strong> est un <em>sérialiseur</em> qui retourne une représentation JSON de l'objet <a href="/fr/docs/Web/API/PerformanceResourceTiming"><code>PerformanceResourceTiming</code></a>.</p>
<h2 id="Syntax">Syntaxe</h2>
<pre class="brush: js">let <var>json</var> = <var>resourcePerfEntry</var>.toJSON();</pre>
<h3 id="Arguments">Arguments</h3>
<p>Aucun.</p>
<h3 id="Return_value">Valeur de retour</h3>
<dl>
<dt><code>json</code></dt>
<dd>Un objet JSON qui est la sérialisation de l'objet <a href="/fr/docs/Web/API/PerformanceResourceTiming"><code>PerformanceResourceTiming</code></a> comme une carte avec des entrées de l'interface héritée la plus proche et avec des entrées pour chacun des attributs sérialisables.</dd>
</dl>
<h2 id="Example">Exemple</h2>
<pre class="brush: js">// Obtient une entrée de performance des ressources
let perfEntries = performance.getEntriesByType("resource");
let entry = perfEntries[0];
// Récupère le JSON et l'enregistre
let json = entry.toJSON();
let s = JSON.stringify(json);
console.log("PerformanceEntry.toJSON = " + s);
</pre>
<h2 id="Specifications">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('Resource Timing 2', '#dom-performanceresourcetiming-tojson',
'toJSON')}}</td>
<td>{{Spec2('Resource Timing 2')}}</td>
<td></td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility">Compatibilité des navigateurs</h2>
<p>{{Compat("api.PerformanceResourceTiming.toJSON")}}</p>
|