这是
实验性技术
检查
浏览器兼容性表格
要小心谨慎在生产中使用这之前。
toJSON()
method is a
serializer
- it returns a JSON representation of the
PerformanceNavigationTiming
对象。
json = resourcePerfEntry.toJSON();
PerformanceNavigationTiming
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("navigation");
var entry = perfEntries[0];
// Get the JSON and log it
var json = entry.toJSON();
var s = JSON.stringify(json);
console.log("PerformanceNavigationTiming.toJSON() = " + s);
| 规范 | 状态 | 注释 |
|---|---|---|
|
Navigation 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 |
完整支持
不支持
PerformanceNavigationTiming
toJSON()