DropZonejs:提交没有文件的表单

kab*_*mus 21 dropzone.js

我已成功将dropzone.js集成到现有表单中.此表单发布附件和其他输入,如复选框等.

当我提交附有附件的表格时,所有输入都会正确发布.但是,我希望用户可以在没有任何附件的情况下提交表单.Dropzone不允许表单提交,除非有附件.

有没有人知道如何覆盖这个默认行为并提交dropzone.js表单而没有任何附件?谢谢!

   $( document ).ready(function () {
    Dropzone.options.fileUpload = { // The camelized version of the ID of the form element

      // The configuration we've talked about above
      autoProcessQueue: false,
      uploadMultiple: true,
      parallelUploads: 50,
      maxFiles: 50,
      addRemoveLinks: true,
      clickable: "#clickable",
      previewsContainer: ".dropzone-previews",
      acceptedFiles: "image/*,application/pdf, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/vnd.openxmlformats-officedocument.spreadsheetml.template, application/vnd.openxmlformats-officedocument.presentationml.template, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/vnd.openxmlformats-officedocument.presentationml.slide, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/vnd.openxmlformats-officedocument.wordprocessingml.template, application/vnd.ms-excel.addin.macroEnabled.12, application/vnd.ms-excel.sheet.binary.macroEnabled.12,text/rtf,text/plain,audio/*,video/*,.csv,.doc,.xls,.ppt,application/vnd.ms-powerpoint,.pptx",



        // The setting up of the dropzone
      init: function() {
        var myDropzone = this;

        // First change the button to actually tell Dropzone to process the queue.
        this.element.querySelector("button[type=submit]").addEventListener("click", function(e) {
          // Make sure that the form isn't actually being sent.
          e.preventDefault();
          e.stopPropagation();
          myDropzone.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() {
          // Gets triggered when the form is actually being sent.
          // Hide the success button or the complete form.
        });
        this.on("successmultiple", function(files, response) {
            window.location.replace(response.redirect);
            exit();
        });
        this.on("errormultiple", function(files, response) {
          $("#notifications").before('<div class="alert alert-error" id="alert-error"><button type="button" class="close" data-dismiss="alert">×</button><i class="icon-exclamation-sign"></i> There is a problem with the files being uploaded. Please check the form below.</div>');
          exit();
        });

      }

    }
  });
Run Code Online (Sandbox Code Playgroud)

Mat*_*cic 21

使用以下内容:

$('input[type="submit"]').on("click", function (e) {

                    e.preventDefault();
                    e.stopPropagation();

                    var form = $(this).closest('#dropzone-form');
                    if (form.valid() == true) { 
                        if (myDropzone.getQueuedFiles().length > 0) {                        
                            myDropzone.processQueue();  
                        } else {                       
                            myDropzone.uploadFiles([]); //send empty 
                        }                                    
                    }               
                });
Run Code Online (Sandbox Code Playgroud)

参考:https://github.com/enyo/dropzone/issues/418

  • 有一个未解决的问题.请upvote以便修复.https://github.com/enyo/dropzone/issues/687 (3认同)

Luc*_*cia 12

根据您的情况,您只需提交表格:

if (myDropzone.getQueuedFiles().length > 0) {                        
   myDropzone.processQueue();  
} else {                       
   $("#my_form").submit();
}
Run Code Online (Sandbox Code Playgroud)


Ila*_*ler 12

您应该检查队列中是否有文件.如果队列为空,则直接调用dropzone.uploadFile().此方法要求您传入文件.正如[caniuse] [1]所述,IE/Edge不支持File构造函数,因此只需使用Blob API,因为File API就是基于此.

dropzone.uploadFile()中使用的formData.append()方法要求您传递实现Blob接口的对象.这就是为什么你不能传入普通对象的原因.

dropzone版本5.2.0需要upload.chunked选项

if (this.dropzone.getQueuedFiles().length === 0) {
    var blob = new Blob();
    blob.upload = { 'chunked': this.dropzone.defaultOptions.chunking };
    this.dropzone.uploadFile(blob);
} else {
    this.dropzone.processQueue();
}
Run Code Online (Sandbox Code Playgroud)

  • 这个答案应该放在最上面!谢谢 (2认同)
  • 唯一对我有用的版本 5.7.0 的解决方案。所有其他答案对于 4.x 版本均有效。 (2认同)
  • 感谢您的解决方案!如果未定义“defaultOptions”,您还可以使用“this.dropzone.options.chunking”。 (2认同)

Ham*_*had 6

第一种方法对我来说有点太昂贵了,我不想深入研究源代码并修改它,

如果你碰巧像我一样,请使用这个。

function submitMyFormWithData(url)
    {
        formData = new FormData();
        //formData.append('nameOfInputField', $('input[name="nameOfInputField"]').val() );

        $.ajax({
                url: url,
                data: formData,
                processData: false,
                contentType: false,
                type: 'POST',

                success: function(data){
                alert(data);
                }
        });
    }
Run Code Online (Sandbox Code Playgroud)

在你的 dropzone 脚本中

$("#submit").on("click", function(e) {
                      // Make sure that the form isn't actually being sent.
                      e.preventDefault();
                      e.stopPropagation();

                        if (myDropzone.getQueuedFiles().length > 0)
                        {                        
                                myDropzone.processQueue();  
                        } else {                 
                                submitMyFormWithData(ajaxURL);
                        }     

                    });
Run Code Online (Sandbox Code Playgroud)