PerformanceMeasure

注意:此功能在Web Workers中可用。

PerformanceMeasure 是用于 PerformanceEntry 对象的抽象接口,其 entryType 为“measure”。此类型的条目是通过调用 performance.measure() 创建的,以在浏览器的性能时间轴上添加两个标记之间的命名 DOMHighResTimeStamp测量值)。

PerformanceEntry PerformanceMeasure

实例属性

此接口定义

PerformanceMeasure.detail

包含关于测量的任意元数据。

此外,它通过如下限定/约束属性来扩展以下 PerformanceEntry 属性

PerformanceEntry.entryType

返回“measure”。

PerformanceEntry.name

返回在通过调用 performance.measure() 创建测量值时给出的名称。

PerformanceEntry.startTime

返回调用 performance.measure() 时给出的 时间戳

PerformanceEntry.duration

返回一个 DOMHighResTimeStamp,它是测量的持续时间(通常是测量的结束标记时间戳减去其开始标记时间戳)。

实例方法

此接口没有方法。

示例

请参阅 使用用户计时 API中的示例。

规范

规范
用户计时
# performancemeasure

浏览器兼容性

BCD 表仅在浏览器中加载

另请参阅