EventCounts

Limited availability

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

Die EventCounts-Schnittstelle der Performance API liefert die Anzahl der Ereignisse, die für jeden Ereignistyp ausgelöst wurden.

Eine EventCounts-Instanz ist ein schreibgeschütztes Map-ähnliches Objekt, bei dem jeder Schlüssel eine Zeichenkette für einen Ereignistyp ist und der entsprechende Wert eine ganze Zahl, die die Anzahl der ausgelösten Ereignisse für diesen Ereignistyp angibt.

Konstruktor

Diese Schnittstelle hat keinen Konstruktor. In der Regel erhalten Sie eine Instanz dieses Objekts über die performance.eventCounts-Eigenschaft.

Instanz-Eigenschaften

size

Siehe Map.prototype.size für Details.

Instanz-Methoden

entries()

Siehe Map.prototype.entries() für Details.

forEach()

Siehe Map.prototype.forEach() für Details.

get()

Siehe Map.prototype.get() für Details.

has()

Siehe Map.prototype.has() für Details.

keys()

Siehe Map.prototype.keys() für Details.

values()

Siehe Map.prototype.values() für Details.

Beispiele

Arbeiten mit EventCount-Maps

Im Folgenden finden Sie einige Beispiele, um Informationen aus einem EventCounts-Map zu erhalten. Beachten Sie, dass das Map schreibgeschützt ist und die Methoden clear(), delete() und set() nicht verfügbar sind.

js
for (entry of performance.eventCounts.entries()) {
  const type = entry[0];
  const count = entry[1];
}

const clickCount = performance.eventCounts.get("click");

const isExposed = performance.eventCounts.has("mousemove");
const exposedEventsCount = performance.eventCounts.size;
const exposedEventsList = [...performance.eventCounts.keys()];

Spezifikationen

Specification
Event Timing API
# sec-event-counts

Browser-Kompatibilität

BCD tables only load in the browser

Siehe auch