Movatterモバイル変換


[0]ホーム

URL:


  1. 개발자를 위한 웹 기술
  2. Web API
  3. FormData
  4. FormData.entries()

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

View in EnglishAlways 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 objectvar formData = new FormData();formData.append("key1", "value1");formData.append("key2", "value2");// Display the key/value pairsfor (var pair of formData.entries()) {  console.log(pair[0] + ", " + pair[1]);}

결과는 다음과 같습니다:

key1, value1key2, value2

명세서

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

브라우저 호환성

See also

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp