當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Node.js PerformanceObserverEntryList.getEntries()用法及代碼示例


performanceObserverEntryList.getEntries()

添加於:v8.5.0

以相對於 performanceEntry.startTime 的時間順序返回 PerformanceEntry 對象的列表。

const {
  performance,
  PerformanceObserver
} = require('node:perf_hooks');

const obs = new PerformanceObserver((perfObserverList, observer) => {
  console.log(perfObserverList.getEntries());
  /**
   * [
   *   PerformanceEntry {
   *     name: 'test',
   *     entryType: 'mark',
   *     startTime: 81.465639,
   *     duration: 0
   *   },
   *   PerformanceEntry {
   *     name: 'meow',
   *     entryType: 'mark',
   *     startTime: 81.860064,
   *     duration: 0
   *   }
   * ]
   */

  performance.clearMarks();
  performance.clearMeasures();
  observer.disconnect();
});
obs.observe({ type: 'mark' });

performance.mark('test');
performance.mark('meow');

相關用法


注:本文由純淨天空篩選整理自nodejs.org大神的英文原創作品 PerformanceObserverEntryList.getEntries()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。