FormData.values()
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.
참고 : 이 기능은 Web Worker에서 사용할 수 있습니다.
io error: No such file or directory (os error 2) (/home/runner/work/yari/yari/mdn/translated-content/files/ko/web/api/xmlhttprequest_api/index.md)
FormData.values()
메서드는 이 객체에 포함 된 모든 value를 통과하는 iterator
를 반환합니다. value는 USVString
또는 Blob
객체입니다.
참고 : 이 메서드는 Web Worker에서 사용할 수 있습니다.
Syntax
formData.values();
Return value
iterator
를 반환합니다.
Example
// Create a test FormData object
var formData = new FormData();
formData.append("key1", "value1");
formData.append("key2", "value2");
// Display the values
for (var value of formData.values()) {
console.log(value);
}
결과는 다음과 같습니다:
value1 value2
명세서
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.
브라우저 호환성
BCD tables only load in the browser