使用jQuery在dropzone中获取文件名

时间:2016-05-15 10:02:42

标签: javascript jquery dropzone.js

hy伙伴我这样尝试,我的问题是如何抓取文件名或名字..?

 console.log(myDropzone.files);

enter image description here

2 个答案:

答案 0 :(得分:1)

myDropzone.files返回一个File对象数组。您可以使用索引访问特定的文件属性。

例如

 console.log(myDropzone.files[1].name);//Getting second file name

答案 1 :(得分:1)

转到dropzone.js并找到

Dropzone.prototype._finished()函数并提醒此

responseText.success

您将获得文件名