DropZonejs: Submit form without files

后端 未结 7 1701
一生所求
一生所求 2020-12-05 14:27

I\'ve successfully integrated dropzone.js inside an existing form. This form posts the attachments and other inputs like checkboxes, etc.

When I submit the form wit

相关标签:
7条回答
  • 2020-12-05 15:09

    I have successfully used :

    submitButton.addEventListener("click", function () {  
      if(wrapperThis.files.length){
            error = `Please select a file`; 
        } else {
            wrapperThis.processQueue(); 
        }
    }); 
    
    0 讨论(0)
提交回复
热议问题