FormData: values() Methode

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.

Die FormData.values()-Methode gibt einen Iterator zurück, der durch alle Werte iteriert, die in der FormData enthalten sind. Die Werte sind Strings oder Blob-Objekte.

Syntax

js
values()

Parameter

Keine.

Rückgabewert

Ein Iterator der Werte von FormData.

Beispiele

js
const formData = new FormData();
formData.append("key1", "value1");
formData.append("key2", "value2");

// Display the values
for (const value of formData.values()) {
  console.log(value);
}

Das Ergebnis ist:

value1
value2

Spezifikationen

No specification found

No specification data found for api.FormData.values.
Check for problems with this page or contribute a missing spec_url to mdn/browser-compat-data. Also make sure the specification is included in w3c/browser-specs.

Browser-Kompatibilität

BCD tables only load in the browser

Siehe auch