Response: ok-Eigenschaft

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since March 2017.

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

Die ok-Eigenschaft des Response-Interfaces ist eine schreibgeschützte Boolean-Eigenschaft, die angibt, ob die Antwort erfolgreich war (Status im Bereich 200-299) oder nicht.

Wert

Ein Boolean-Wert.

Beispiele

In unserem Fetch Response Beispiel (siehe Fetch Response live) erstellen wir ein neues Request-Objekt mithilfe des Request()-Konstruktors und übergeben ihm einen JPG-Pfad. Wir holen dann diese Anfrage mit fetch() ab, extrahieren ein Blob aus der Antwort mit Response.blob, erstellen eine Objekt-URL daraus mit URL.createObjectURL(), und zeigen dieses in einem <img> an.

Hinweis: Am Anfang des fetch()-Blocks protokollieren wir den ok-Wert der Antwort in der Konsole.

js
const myImage = document.querySelector("img");

const myRequest = new Request("flowers.jpg");

fetch(myRequest).then((response) => {
  console.log(response.ok); // returns true if the response returned successfully
  response.blob().then((myBlob) => {
    const objectURL = URL.createObjectURL(myBlob);
    myImage.src = objectURL;
  });
});

Spezifikationen

Specification
Fetch Standard
# ref-for-dom-response-ok②

Browser-Kompatibilität

BCD tables only load in the browser

Siehe auch