From 33058f2b292b3a581333bdfb21b8f671898c5060 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:40:17 -0500 Subject: initial commit --- files/zh-cn/web/api/performanceobserver/index.html | 70 ++++++++++++++++++++++ 1 file changed, 70 insertions(+) create mode 100644 files/zh-cn/web/api/performanceobserver/index.html (limited to 'files/zh-cn/web/api/performanceobserver/index.html') diff --git a/files/zh-cn/web/api/performanceobserver/index.html b/files/zh-cn/web/api/performanceobserver/index.html new file mode 100644 index 0000000000..ca70398a68 --- /dev/null +++ b/files/zh-cn/web/api/performanceobserver/index.html @@ -0,0 +1,70 @@ +--- +title: 性能监测对象 +slug: Web/API/PerformanceObserver +tags: + - API + - 性能 + - 性能记录 + - 接口 +translation_of: Web/API/PerformanceObserver +--- +
{{APIRef("Performance Timeline API")}}
+ +
PerformanceObserver 用于监测性能度量事件,在浏览器的性能时间轴记录下一个新的 {{domxref("PerformanceEntry","performance entries", '', 'true')}}  的时候将会被通知 。
+ +
+ +
{{AvailableInWorkers}}
+ +

构造函数

+ +
+
{{domxref("PerformanceObserver.PerformanceObserver","PerformanceObserver()")}}
+
创建并返回一个新的 PerformanceObserver 对象。
+
+ +

方法

+ +
+
{{domxref("PerformanceObserver.observe","PerformanceObserver.observe()")}}
+
指定监测的 {{domxref("PerformanceEntry.entryType","entry types")}} 的集合。 当 {{domxref("PerformanceEntry","performance entry")}} 被记录并且是指定的 entryTypes 之一的时候,性能观察者对象的回调函数会被调用。
+
{{domxref("PerformanceObserver.disconnect","PerformanceObserver.disconnect()")}}
+
性能监测回调停止接收 {{domxref("PerformanceEntry","性能条目", '', 'true')}}。
+
+ +
+
+ +

示例

+ +
function perf_observer(list, observer) {
+   // Process the "measure" event
+   // 处理 "measure" 事件
+}
+var observer2 = new PerformanceObserver(perf_observer);
+observer2.observe({entryTypes: ["measure"]});
+ +

规范

+ + + + + + + + + + + + + + +
规范草案状态注释
{{SpecName('Performance Timeline Level 2', '#dom-performanceobserver', 'PerformanceObserver')}}{{Spec2('Performance Timeline Level 2')}}PerformanceObserver 接口的初始定义
+ +

浏览器兼容性

+ +
+ + +

{{Compat("api.PerformanceObserver")}}

+
-- cgit v1.2.3-54-g00ecf