如果出现maxfilesize,maxfileuploads等错误,Dropzone自动进程队列false将无效

时间:2015-04-27 12:43:43

标签: jquery file-upload upload dropzone.js

当我上传更大尺寸的图像然后在dropzone中允许autoprocessqueue不起作用并显示过程已完成,如果我上传正确的文件然后它正常工作。以下是我的代码:

$username

如果我上传大文件或除图片之外的其他文件,则会触发警报“所有文件已成功上传”。

1 个答案:

答案 0 :(得分:1)

this.on("queuecomplete", function (file)   {    
  var size = thisDropzone.files[0].size/1000000;    
  if(thisDropzone.files[0].type== "image/jpeg"  ||thisDropzone.files[0].type=="image/jpg" || thisDropzone.files[0].type=="image/png" && size<5)
                        listingSubmitted(); 
 });