BackgroundFetchRecord: responseReady-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.

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

Die schreibgeschützte responseReady-Eigenschaft der BackgroundFetchRecord-Schnittstelle gibt ein Promise zurück, das mit einer Response aufgelöst wird.

Wert

Ein Promise, das mit einer Response aufgelöst wird.

Beispiele

In diesem Beispiel wird ein einzelnes BackgroundFetchRecord mit BackgroundFetchManager.fetch() zurückgegeben. Der Wert von responseReady wird zurückgegeben und in der Konsole protokolliert.

js
bgFetch.match("/ep-5.mp3").then(async (record) => {
  if (!record) {
    console.log("No record found");
    return;
  }

  const response = await record.responseReady;
  console.log(`Here's the response`, response);
});

Spezifikationen

Specification
Background Fetch
# dom-backgroundfetchrecord-responseready

Browser-Kompatibilität

BCD tables only load in the browser