blob: 2dac99f0f5cdfba4c4c19673b2e6cafa0dc0dc1d (
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
|
---
title: Performance.toJSON()
slug: Web/API/Performance/toJSON
translation_of: Web/API/Performance/toJSON
---
<div>{{APIRef("High Resolution Timing")}}</div>
<p>O método <strong><code>toJSON()</code></strong> da interface {{domxref("Performance")}} é um serializador padrão: Ele retorna uma representação em JSON das propriedades do objeto performance.</p>
<h2 id="Sintaxe">Sintaxe</h2>
<pre class="syntaxbox">minhaPerf = performance.toJSON()
</pre>
<h3 id="Argumentos">Argumentos</h3>
<dl>
<dt>Nenhum</dt>
<dd> </dd>
</dl>
<h3 id="Valor_de_retorno">Valor de retorno</h3>
<dl>
<dt>minhaPerf</dt>
<dd>Um objeto JSON que é a serialização do objeto {{domxref("Performance")}}.</dd>
</dl>
<h2 id="Exemplo">Exemplo</h2>
<pre class="brush: js">var js;
js = window.performance.toJSON();
console.log("json = " + JSON.stringify(js));
</pre>
<h2 id="Especificações">Especificações</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="col">Specification</th>
<th scope="col">Status</th>
<th scope="col">Comment</th>
</tr>
<tr>
<td>{{SpecName('Highres Time Level 2', '#the-performance-interface', 'toJSON() serializer')}}</td>
<td>{{Spec2('Highres Time Level 2')}}</td>
<td>Define <code>toJson()</code>.</td>
</tr>
</tbody>
</table>
<h2 id="Compatibilidade_de_navegadores">Compatibilidade de navegadores</h2>
<div>
<div>
<p>{{Compat("api.Performance.toJSON")}}</p>
</div>
</div>
|