我有一个带有dropzone JS的引导程序模版。我要点击上传文件。流程如下:
但是在进行第二步之前,我要检查并确保dropzone中存在文件。但是,当我添加文件并尝试记录dropzone.files.length时,即使有文件,我也得到0。
$(selector).dropzone({
url: "/file/post",
addRemoveLinks: true,
autoProcessQueue: false,
init: function() {
dragDrop = this;
$(".selectButton").off().on("click", function(e){
console.log(dragDrop.files.length);
if(dragDrop.files.length > 0) {
$(".stepOne").hide();
$(".stepTwo").show();
}
});
$(".uploadButton").on("click", function(){
dragDrop.processQueue();
});
}
});