diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
commit | 33058f2b292b3a581333bdfb21b8f671898c5060 (patch) | |
tree | 51c3e392513ec574331b2d3f85c394445ea803c6 /files/ja/web/api/performanceobserver/takerecords | |
parent | 8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff) | |
download | translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2 translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip |
initial commit
Diffstat (limited to 'files/ja/web/api/performanceobserver/takerecords')
-rw-r--r-- | files/ja/web/api/performanceobserver/takerecords/index.html | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/files/ja/web/api/performanceobserver/takerecords/index.html b/files/ja/web/api/performanceobserver/takerecords/index.html new file mode 100644 index 0000000000..6586c7f1f6 --- /dev/null +++ b/files/ja/web/api/performanceobserver/takerecords/index.html @@ -0,0 +1,69 @@ +--- +title: PerformanceObserver.takeRecords() +slug: Web/API/PerformanceObserver/takeRecords +tags: + - API + - PerformanceObserver + - takeRecords() + - オブザーバー + - パフォーマンスオブザーバー API + - メソッド + - リファレンス +translation_of: Web/API/PerformanceObserver/takeRecords +--- +<div>{{APIRef("Performance Timeline API")}}</div> + +<p>{{domxref('PerformanceObserver')}} インターフェイスの <strong><code>takeRecords()</code></strong> メソッドは、パフォーマンスオブザーバーに格納されている{{domxref("PerformanceEntry","パフォーマンスエントリ")}}の現在のリストを空にして返します。</p> + +<h2 id="構文">構文</h2> + +<pre class="syntaxbox">var PerformanceEntry[] = <em>performanceObserver</em>.takeRecords(); +</pre> + +<h3 id="パラメータ">パラメータ</h3> + +<p>なし</p> + +<h3 id="戻り値">戻り値</h3> + +<p>{{domxref("PerformanceEntry")}} オブジェクトのリスト</p> + +<h2 id="例">例</h2> + +<pre class="brush: js">var observer = new PerformanceObserver(function(list, obj) { + var entries = list.getEntries(); + for (var i=0; i < entries.length; i++) { + // Process "mark" and "frame" events + } +}); +observer.observe({entryTypes: ["mark", "frame"]}); +var records = observer.takeRecords(); +console.log(records[0].name); +console.log(records[0].startTime); +console.log(records[0].duration); +</pre> + +<h2 id="仕様">仕様</h2> + +<table class="standard-table"> + <tbody> + <tr> + <th scope="col">仕様書</th> + <th scope="col">ステータス</th> + <th scope="col">コメント</th> + </tr> + <tr> + <td>{{SpecName('Performance Timeline Level 2', '#dom-performanceobserver-takerecords', 'takeRecords()')}}</td> + <td>{{Spec2('Performance Timeline Level 2')}}</td> + <td><code>takeRecords()</code> メソッドの初期定義</td> + </tr> + </tbody> +</table> + +<h2 id="ブラウザの互換性">ブラウザの互換性</h2> + +<div> +<div class="hidden">このページの互換性テーブルは構造化データから生成されます。データに貢献したい場合は <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> をチェックして、プルリクエストを送ってください。</div> + +<p>{{Compat("api.PerformanceObserver.takeRecords")}}</p> +</div> |