--- title: PerformanceResourceTiming.toJSON() slug: Web/API/PerformanceResourceTiming/toJSON tags: - API - Web パフォーマンス - メソッド - リファレンス translation_of: Web/API/PerformanceResourceTiming/toJSON ---
toJSON()
メソッドは、{{domxref("PerformanceResourceTiming")}} オブジェクトの JSON 表現を返すシリアライザです。
json = resourcePerfEntry.toJSON();
// 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);
仕様書 | ステータス | コメント |
---|---|---|
{{SpecName('Resource Timing', '#serializer', 'toJSON')}} | {{Spec2('Resource Timing')}} | 初期定義 |
{{Compat("api.PerformanceResourceTiming.toJSON")}}