当我上传文件并从服务器收到错误时,它会显示一个错误,然后将其删除,然后显示下一个错误。
如何在页面上显示所有错误?
以下是我的尝试:
$( 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);
});
}
};
});