ReportingObserver: observe() Methode

Hinweis: Dieses Feature ist verfügbar in Web Workers.

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