我正在尝试使用新的File API对输入文件进行排序。它返回的列表似乎是不可变的:
var x = "";
var files = e.target.files; // FileList object
// Loop through the FileList and render image files as thumbnails.
files.sort();
> Uncaught TypeError: Object #<FileList> has no method 'sort'
如果我想一次读入多个文件,但我希望它们按顺序到达。 (A.csv
之前处理B.csv
。这可以实现吗?
答案 0 :(得分:12)
[].slice.call(files)
将其变为真实数组,然后就可以使用.sort
。