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


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


performanceObserverEntryList.getEntriesByType(type)

添加於:v8.5.0

參數

根據 performanceEntry.startTime 的時間順序返回 PerformanceEntry 對象的列表,其 performanceEntry.entryType 等於 type

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

const obs = new PerformanceObserver((perfObserverList, observer) => {
  console.log(perfObserverList.getEntriesByType('mark'));
  /**
   * [
   *   PerformanceEntry {
   *     name: 'test',
   *     entryType: 'mark',
   *     startTime: 55.897834,
   *     duration: 0
   *   },
   *   PerformanceEntry {
   *     name: 'meow',
   *     entryType: 'mark',
   *     startTime: 56.350146,
   *     duration: 0
   *   }
   * ]
   */
  performance.clearMarks();
  performance.clearMeasures();
  observer.disconnect();
});
obs.observe({ type: 'mark' });

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

相關用法


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