This page was translated from English by the community. Learn more and join the MDN Web Docs community.

View in English Always switch to English

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 ⁨2018년 10월⁩.

참고 : 이 기능은 Web Worker에서 사용할 수 있습니다.

FormData.keys() 메서드는 이 객체에 포함된 모든 키를 통과하는 iterator 를 반환합니다. 키는 USVString 객체입니다.

참고 : 이 메서드는 Web Worker에서 사용할 수 있습니다.

Syntax

js
formData.keys();

Return value

iterator를 반환합니다.

Example

js
// 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

명세서

This feature does not appear to be defined in any specification.

브라우저 호환성

See also