标签: javascript jquery dropzone.js
hy伙伴我这样尝试,我的问题是如何抓取文件名或名字..?
console.log(myDropzone.files);
答案 0 :(得分:1)
myDropzone.files返回一个File对象数组。您可以使用索引访问特定的文件属性。
myDropzone.files
例如
console.log(myDropzone.files[1].name);//Getting second file name
答案 1 :(得分:1)
转到dropzone.js并找到
Dropzone.prototype._finished()函数并提醒此
responseText.success
您将获得文件名