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 FormData.set and append() is that if the specified key already exists, FormData.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.
Note: This method is available in Web Workers.
There are two versions of this method: a two and a three parameter version:
formData.append(name, value); formData.append(name, value, filename);
namevalue.valueUSVString or Blob (including subclasses such as File).filename Optional
USVString), 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.
Void.
The following line creates an empty FormData object:
var formData = new FormData(); // Currently empty
You can add key/value pairs to this using FormData.append:
formData.append('username', 'Chris');
formData.append('userpic', myFileInput.files[0], 'chris.jpg'); As with regular form data, you can append multiple values with the same name. For example (and being compatible with PHP's naming conventions by adding [] to the name):
formData.append('userpic[]', myFileInput.files[0], 'chris1.jpg');
formData.append('userpic[]', myFileInput.files[1], 'chris2.jpg'); This technique makes it simpler to process multi-file uploads because the resultant data structure is more conducive to looping.
| Specification | Status | Comment |
|---|---|---|
| XMLHttpRequest The definition of 'append()' in that specification. | Living Standard | Initial definition |
| Desktop | ||||||
|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | |
| Basic support | 7 | Yes | 4
|
10
|
12 | 5 |
append with filename |
Yes | Yes | 22 | Yes | ? | Yes |
| Mobile | |||||||
|---|---|---|---|---|---|---|---|
| Android webview | Chrome for Android | Edge Mobile | Firefox for Android | Opera for Android | iOS Safari | Samsung Internet | |
| Basic support | 3
|
? | Yes | 4
|
12 | ? | ? |
append with filename |
? | ? | ? | 22 | ? | ? | ? |
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/FormData/append