Update file-object.md
Added a for loop to iterate over the array of files, which allows processing of multiple files being dropped over the "holder" div.
This commit is contained in:
parent
4081381700
commit
0e24d148fd
1 changed files with 3 additions and 2 deletions
|
@ -24,8 +24,9 @@ Example on getting a real path from a dragged-onto-the-app file:
|
||||||
};
|
};
|
||||||
holder.ondrop = (e) => {
|
holder.ondrop = (e) => {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
const file = e.dataTransfer.files[0];
|
for (let f of e.dataTransfer.files) {
|
||||||
console.log('File you dragged here is', file.path);
|
console.log('File(s) you dragged here: ', f.path);
|
||||||
|
}
|
||||||
return false;
|
return false;
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
Loading…
Reference in a new issue