我已按照Combine Dropzone With Normal Form教程允许Dropzone上传和放大表格提交。表格是申请表格,应该与&没有添加文件。目前,仅当将一个或多个文件添加到Dropzone时,它才有效。
是否有一个选项我可以启用Dropzone处理表单提交,即使上传队列为空?
以下是我初始化表单的方式:
Dropzone.options.general = {
paramName: 'tx_ddapplicationform_applicationformgeneral[form][files]', // The name that will be used to transfer the file
autoProcessQueue: false,
uploadMultiple: true,
parallelUploads: 100,
maxFiles: 100,
addRemoveLinks: true,
previewsContainer: '.dropzone-previews', // we specify on which div id we must show the files
clickable: false,
// The setting up of the dropzone
init: function() {
var myDropzone = this;
console.log(myDropzone)
console.log("Dropzone init");
console.log(this.element.querySelector("input[type=submit]"))
// First change the button to actually tell Dropzone to process the queue.
this.element.querySelector("input[type=submit]").addEventListener("click", function(e) {
// Make sure that the form isn't actually being sent.
console.log("the button is clicked")
e.preventDefault();
e.stopPropagation();
myDropzone.processQueue();
console.log("after processQueue")
});
// Listen to the sendingmultiple event. In this case, it's the sendingmultiple event instead
// of the sending event because uploadMultiple is set to true.
this.on("sendingmultiple", function() {
console.log("sending multiple");
});
this.on("successmultiple", function(files, response) {
console.log("success multiple");
});
this.on("errormultiple", function(files, response) {
console.log("error multiple");
});
}
我浏览了dropzone.js表单并添加了console.logs以查看发生了什么。成功提交(添加了文件)记录了这个:
processQueue dropzone.js:1301
upload multiple dropzone.js:1314
sending multiple main.jquery.js:551
after processQueue main.jquery.js:545
success multiple main.jquery.js:554
不成功的提交,没有附件,记录下来:
processQueue dropzone.js:1301
after processQueue main.jquery.js:545
答案 0 :(得分:4)
好吧,可能是一篇死讯,但是因为我在谷歌结果页面的第一个链接中发现了这个问题,并且因为它被查看了很多,我认为答案不会伤害任何人。
我有相同的结构,并解决我刚刚做的问题:
{{1}}
请注意,如果您使用dropzone(第一种情况)提交表单,则通过ajax执行此操作,因此结果应由返回的响应处理,而如果您只提交表单(第二种情况),则您将拥有正常表格提交。
在我的情况下,这需要根据提交的类型做出不同的回应。
答案 1 :(得分:2)
您应该检查队列中是否有文件。如果队列为空,则直接调用dropzone.uploadFile()。此方法要求您传入文件。正如caniuse所述,IE / Edge上不支持File构造函数,因此只需使用Blob API,因为File API就是基于此。
dropzone.uploadFile()中使用的formData.append()方法要求您传递实现Blob接口的对象。这就是你无法传入普通物体的原因。
dropzone版本5.2.0需要upload.chunked选项
Application has thrown an uncaught exception and is terminated:
SyntaxError: Use of const in strict mode.
at Module._compile (module.js:434:25)
at Object..js (module.js:464:10)
at Module.load (module.js:353:31)
at Function._load (module.js:311:12)
at Module.require (module.js:359:17)
at require (module.js:375:17)
at Object.<anonymous> (D:\home\site\wwwroot\server\server.js:3:16)
at Module._compile (module.js:446:26)
at Object..js (module.js:464:10)
at Module.load (module.js:353:31)