FormData.keys()
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.keys()
메서드는 이 객체에 포함된 모든 키를 통과하는 iterator
를 반환합니다. 키는 USVString
객체입니다.
참고 : 이 메서드는 Web Worker에서 사용할 수 있습니다.
Syntax
formData.keys();
Return value
iterator
를 반환합니다.
Example
// Create a test FormData object
var formData = new FormData();
formData.append("key1", "value1");
formData.append("key2", "value2");
// Display the keys
for (var key of formData.keys()) {
console.log(key);
}
결과는 다음과 같습니다:
key1 key2
명세서
No specification found
No specification data found for api.FormData.keys
.
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