This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.
Note: This feature is available in Web Workers.
The append() method of the FormData interface appends a new value onto an existing key inside a FormData object, or adds the key if it does not already exist.
The difference between set() and append() is that if the specified key already exists, set() will overwrite all existing values with the new one, whereas append() will append the new value onto the end of the existing set of values.
append(name, value) append(name, value, filename)
nameThe name of the field whose data is contained in value.
valueThe field's value. This can be a string or Blob (including subclasses such as File). If none of these are specified the value is converted to a string.
filename OptionalThe filename reported to the server (a string), when a Blob or File is passed as the second parameter. The default filename for Blob objects is "blob". The default filename for File objects is the file's filename.
Note: If you specify a Blob as the data to append to the FormData object, the filename that will be reported to the server in the "Content-Disposition" header used to vary from browser to browser.
None (undefined).
formData.append("username", "Chris");
When the value is a Blob (or a File), you can specify its name with the filename parameter:
formData.append("user-pic", myFileInput.files[0], "chris.jpg");
As with regular form data, you can append multiple values with the same name:
formData.append("user-pic", myFileInput.files[0], "chris1.jpg");
formData.append("user-pic", myFileInput.files[1], "chris2.jpg");
If the value is not a string or a Blob, append() will convert it to a string automatically:
formData.append("name", true);
formData.append("name", 72);
formData.getAll("name"); // ["true", "72"]
| Specification |
|---|
| XMLHttpRequest> # dom-formdata-append> |
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | WebView on iOS | |
append |
5 | 12 | 4Before Firefox 7, specifying aBlob as the data to append to the object, the filename reported in the Content-Disposition HTTP header was an empty string, resulting in errors on some servers. Starting with Firefox 7, the filename blob is sent. |
12 | 5 | 18 | 4Before Firefox for Android 7, specifying aBlob as the data to append to the object, the filename reported in the Content-Disposition HTTP header was an empty string, resulting in errors on some servers. Starting with Firefox for Android 7, the filename blob is sent. |
12 | 5 | 1.0 | 3XHR in Android 4.0 sends empty content forFormData with blob. |
5 |
filename_parameter |
16 | 12 | 22 | ≤15 | 6 | 18 | 22 | ≤14 | 6 | 1.0 | 4.4 | 6 |
© 2005–2025 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/FormData/append