我正在使用Dropzone
来上传我的文件。所以在这里我可以将多个文件中的多个文件发送到服务器。
我想要的是在将条目保存到我的数据库后,将一些json
数据从服务器发送回JS
。
Dropzone.autoDiscover = false;
var md = new Dropzone(".mydropzone", {
url: "/upload/",
maxFilesize: "5",
addRemoveLinks: true
});
md.on("complete", function (file, response) {
alert(response)
if (this.getUploadingFiles().length === 0 && this.getQueuedFiles().length === 0) {
alert('awais');
}
md.removeFile(file);
});