This input element allows to take multiple images, for example if i select 2 images i get: FileList {0: File, 1: File, length: 2}. Then if i select again for example 1 image i get another FileList: FileList {0: File, length: 1}. There's a chance to push this new image to the first FileList? And it's possible to remove an image of the FileList by his index? Thanks in advance.
function handleFileSelect(evt) {
var files = evt.target.files; // FileList object
console.log(files);
for (var i = 0; i < files.length; i++) {
console.log(files[i]);
}
// Loop through the FileList and render image files as thumbnails.
for (var i = 0, f; f = files[i]; i++) {
if (!f.type.match('image.*')) {
continue;
}
let reader = new FileReader();
reader.onload = (function(theFile) {
return function(e) {
// Render thumbnail.
var span = document.createElement('span');
span.innerHTML = ['<img class="thumb" src="', e.target.result,
'" title="', escape(theFile.name), '"/>'].join('');
document.getElementById('list').insertBefore(span, null);
};
})(f);
reader.readAsDataURL(f);
}
}
document.getElementById('files').addEventListener('change', handleFileSelect, false);
.thumb {
height: 75px;
border: 1px solid #000;
margin: 10px 5px 0 0;
}
<input type="file" id="files" name="files[]" multiple />
<output id="list"></output>
This is the way you can achieve your desired result using FormData.
You can change the code to achieve your desired look and functionality.
In summary what the following code does:
FormData
instancefile-${index}
field ofFormData
created in step 1FileReader
instance for eachFile
FileReader
reads the file content and returns data: URL representing the file's data as a base64 encoded string.span
element and appends animg
element to it with the fileContent of step 5 assrc
click
listener to thespan
so when the user clicks an image the corresponding file will be removed fromFormData
of step 1 and thespan
will be removed fromDOM
FormData
will be sent to the backend as a request body using Fetch API when the user clicks thesubmit files
button using thesendFiles
function as click handler.you can see the list of files attached to
FormData
with their corrponding form field name and original filename under sunbmit button as aul
generated usinglistFiles
functionexample of How to upload a file using Fetch for refrence.