当我上传更大尺寸的图像然后在dropzone中允许autoprocessqueue不起作用并显示过程已完成,如果我上传正确的文件然后它正常工作。以下是我的代码:
$username
如果我上传大文件或除图片之外的其他文件,则会触发警报“所有文件已成功上传”。
答案 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();
});