ReportingObserver: observe() Methode

Limited availability

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

Hinweis: Diese Funktion ist in Web Workers verfügbar.

Die observe() Methode des ReportingObserver Interfaces weist einen Reporting Observer an, mit dem Sammeln von Berichten in seiner Berichtsqueue zu beginnen.

Syntax

js
observe()

Parameter

Keine.

Rückgabewert

Keiner (undefined).

Beispiele

js
const options = {
  types: ["deprecation"],
  buffered: true,
};

const observer = new ReportingObserver((reports, observer) => {
  reportBtn.onclick = () => displayReports(reports);
}, options);

observer.observe();

Spezifikationen

Specification
Reporting API
# dom-reportingobserver-observe

Browser-Kompatibilität

BCD tables only load in the browser

Siehe auch