Request: json() Methode
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 json()
Methode des Request
Interfaces
liest den Anfragetext und gibt ihn als Promise zurück, das mit dem Ergebnis des Parsens des Textes als JSON
aufgelöst wird.
Beachten Sie, dass das Ergebnis, trotz des Namens der Methode json()
, kein JSON ist, sondern das Ergebnis des Parsens von JSON als Eingabe, um ein JavaScript-Objekt zu erzeugen.
Syntax
json()
Parameter
Keine.
Rückgabewert
Ein Promise
, das in ein JavaScript-Objekt aufgelöst wird. Dieses Objekt kann alles sein, was durch JSON dargestellt werden kann — ein Objekt, ein Array, ein String, eine Zahl…
Beispiele
const obj = { hello: "world" };
const request = new Request("/myEndpoint", {
method: "POST",
body: JSON.stringify(obj),
});
request.json().then((data) => {
// do something with the data sent in the request
});
Spezifikationen
Specification |
---|
Fetch Standard # ref-for-dom-body-json① |
Browser-Kompatibilität
BCD tables only load in the browser