显示所有dropzone错误,而不是一次显示一个

时间:2015-06-18 19:16:28

标签: javascript php codeigniter dropzone.js

当我上传文件并从服务器收到错误时,它会显示一个错误,然后将其删除,然后显示下一个错误。
如何在页面上显示所有错误?

以下是我的尝试:

$( document ).ready(function() {
Dropzone.options.imageDropzone = {
  maxFilesize: 512, // MB
  addRemoveLinks: true,
  init: function() {
    this.on("error", function(file, response) {      
      $('#imgError').html('<div class="alert alert-danger">Filename: ' + file.name + response + '</div>'); 
      this.removeFile(file); 
    });
    this.on("success", function(file, response) {      
      result = $(response).find("#imgSuccess");
      $('#imgResults').html(result);      
    });       
  }
};
});

0 个答案:

没有答案