PerformanceLongTaskTiming: attribution-Eigenschaft

Limited availability

This feature is not Baseline because it does not work in some of the most widely-used browsers.

Experimentell: Dies ist eine experimentelle Technologie
Überprüfen Sie die Browser-Kompatibilitätstabelle sorgfältig, bevor Sie diese produktiv verwenden.

Die attribution-Eigenschaft des readonly-Interfaces PerformanceLongTaskTiming gibt ein Array von TaskAttributionTiming-Objekten zurück.

Wert

Ein Array von TaskAttributionTiming-Objekten.

Beispiele

Protokollierung von Attributen für lange Aufgaben

js
const observer = new PerformanceObserver((list) => {
  list.getEntries().forEach((entry) => {
    entry.attribution.forEach((attributionEntry) => {
      console.log(attributionEntry);
    });
  });
});

observer.observe({ type: "longtask", buffered: true });

Spezifikationen

Specification
Long Tasks API
# dom-performancelongtasktiming-attribution

Browser-Kompatibilität

BCD tables only load in the browser

Siehe auch