问题
It is possible to set .files
property of <input type=\"file\">
element to a FileList
from for example a different <input type=\"file\">
element .files
property or DataTransfer.files
property. See Make .files settable #2866, What happens between uploading a file to an HTML form and submitting it?.
FileList
object has a Symbol.iterator
property which we can use to set a File
object which is iterable, however the .files
.length
is still set to 0
and passing a <form>
having <input type=\"file\">
set where the .files
is set using the above approach yields a File
object having .size
set to 0
.
How to set the File
at FileList
and set .length
of FileList
to the number of files set, where the files are set at FormData()
object?
const input = document.createElement(\"input\");
const form = document.createElement(\"form\");
const [...data] = [
new File([\"a\"], \"a.txt\")
, new File([\"b\"], \"b.txt\")
];
input.type = \"file\";
input.name = \"files\";
input.multiple = true;
// set `File` objects at `FileList`
input.files[Symbol.iterator] = function*() {
for (const file of data) {
yield file
};
};
form.appendChild(input);
const fd = new FormData(form);
for (const file of input.files) {
console.log(file); // `File` objects set at `data`
}
for (const [key, prop] of fd) {
// `\"files\"`, single `File` object having `lastModified` property
// set to a time greater than last `File` object within `data`
// at Chromium 61, only `\"files\"` at Firefox 57
console.log(key, prop);
}
console.log(input.files.length); // 0
回答1:
Edit:
As proven by OP, in one of their gist, there is actually a way to do it...
The DataTransfer constructor (currently only supported by Blink, and FF >= 62), should create a mutable FileList (chrome currently always return a new FileList, but it doesn't really matter for us), accessible through the DataTransferItemList.
If I'm not mistaken, this is currently the only specs-wise way to do it, but Firefox had a bug in their implementation of the ClipboardEvent constructor, where the same DataTransferItemList was and set to the mode read/write which allowed a workaround for FF < 62. I am not sure of my interpretation of the specs, but I believe it should not be accessible normally).
So the way guest271314 found to set arbitrary files on a FileList is as follow:
const dT = new ClipboardEvent('').clipboardData || // Firefox < 62 workaround exploiting https://bugzilla.mozilla.org/show_bug.cgi?id=1422655
new DataTransfer(); // specs compliant (as of March 2018 only Chrome)
dT.items.add(new File(['foo'], 'programmatically_created.txt'));
inp.files = dT.files;
<input type="file" id="inp">
This discovery has lead to this new Proposal to make FileList objects mutable by default, since there is no point anymore to not do it.
Previous (outdated) answer
You can't. FileList objects cannot be modified by scripts*.
You can only exchange the FileList of an input to an other FileList, but you can't modify it*.
(*Except for emptying with input.value = null
).
And you can't either create FileList from scratch, only DataTransfer objects which cannot be created either, and input[type=file]
will create such objects.
To show you that even when setting an input[type=file]
FileList to an other input's one no new FileList is created:
var off = inp.cloneNode(); // an offscreen input
inp.onchange = e => {
console.log('is same before', inp.files === off.files);
off.files = inp.files; // now 'off' does have the same FileList as 'inp'
console.log('is same after', inp.files === off.files);
console.log('offscreen input FileList', off.files);
console.log('resetting the offscreen input');
off.value = null;
console.log('offscreen input FileList', off.files);
console.log('inscreen input FileList', inp.files);
}
<input type="file" id="inp">
Oh And I almost forgot the FormData part, that I don't really understood to say the truth...
So if I got it ok, all you need is simply FormData.append()
:
var fd = new FormData();
fd.append("files[]", new Blob(['a']), 'a.txt');
fd.append("files[]", new Blob(['b']), 'b.txt');
for(let pair of fd.entries()) {
console.log(pair[0], pair[1]);
}
来源:https://stackoverflow.com/questions/47119426/how-to-set-file-objects-and-length-property-at-filelist-object-where-the-files-a