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.entries()

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.entries() 메서드는 이 객체에 포함된 모든 key/value 쌍을 통과하는 iterator 를 반환합니다. 각 쌍의 key는 USVString 객체입니다; value는 USVString 또는 Blob 중 하나입니다.

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

Syntax

js
formData.entries();

Return value

iterator를 리턴합니다.

Example

js
// Create a test FormData object
var formData = new FormData();
formData.append("key1", "value1");
formData.append("key2", "value2");

// Display the key/value pairs
for (var pair of formData.entries()) {
  console.log(pair[0] + ", " + pair[1]);
}

결과는 다음과 같습니다:

key1, value1
key2, value2

명세서

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

브라우저 호환성

See also