toJSON()
method is a
serializer
that returns a JSON representation of the
PerformanceResourceTiming
对象。
json = resourcePerfEntry.toJSON();
PerformanceResourceTiming
object as a map with entries from the closest inherited interface and with entries for each of the serializable attributes.
// Get a resource performance entry
var perfEntries = performance.getEntriesByType("resource");
var entry = perfEntries[0];
// Get the JSON and log it
var json = entry.toJSON();
var s = JSON.stringify(json);
console.log("PerformanceEntry.toJSON = " + s);
| 规范 | 状态 | 注释 |
|---|---|---|
|
Resource Timing Level 2
The definition of 'toJSON' in that specification. |
工作草案 |
| 桌面 | 移动 | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
toJSON
|
Chrome 43 | Edge ≤18 | Firefox 40 | IE No | Opera 30 | Safari 11 | WebView Android 43 | Chrome Android 43 | Firefox Android 42 | Opera Android 30 | Safari iOS 11 | Samsung Internet Android 4.0 |
完整支持
不支持
PerformanceResourceTiming
toJSON()