FormData - Web APIs | MDN (original) (raw)
Constructor
Creates a new FormData object.
Instance methods
Appends a new value onto an existing key inside a FormData object, or adds the key if it does not already exist.
Deletes a key/value pair from a FormData object.
Returns an iterator that iterates through all key/value pairs contained in the FormData.
Returns the first value associated with a given key from within a FormData object.
Returns an array of all the values associated with a given key from within a FormData.
Returns whether a FormData object contains a certain key.
Returns an iterator iterates through all keys of the key/value pairs contained in the FormData.
Sets a new value for an existing key inside a FormData object, or adds the key/value if it does not already exist.
Returns an iterator that iterates through all values contained in the FormData.
Specifications
| Specification |
|---|
| XMLHttpRequest # interface-formdata |