XMLHttpRequest: status-Eigenschaft

Baseline Widely available

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

Hinweis: Dieses Feature ist verfügbar in Web Workers, außer in Service Workers.

Die nur-lesbare XMLHttpRequest.status-Eigenschaft gibt den numerischen HTTP-Statuscode der Antwort des XMLHttpRequest zurück.

Bevor die Anfrage abgeschlossen ist, beträgt der Wert von status 0. Browser melden auch einen Status von 0 im Falle von XMLHttpRequest-Fehlern.

Wert

Eine Zahl.

Beispiele

js
const xhr = new XMLHttpRequest();
console.log("UNSENT: ", xhr.status);

xhr.open("GET", "/server");
console.log("OPENED: ", xhr.status);

xhr.onprogress = () => {
  console.log("LOADING: ", xhr.status);
};

xhr.onload = () => {
  console.log("DONE: ", xhr.status);
};

xhr.send();

/**
 * Outputs the following:
 *
 * UNSENT: 0
 * OPENED: 0
 * LOADING: 200
 * DONE: 200
 */

Spezifikationen

Specification
XMLHttpRequest Standard
# the-status-attribute

Browser-Kompatibilität

BCD tables only load in the browser

Siehe auch