当您将鼠标悬停在Dropzone中已删除文件中的“X”时,我会尝试输出表单验证错误。
我得到了什么:
如何使object Object
输出表单验证中的实际错误消息?我可以提醒错误消息但是在将鼠标悬停在x上时实际上无法显示错误消息。
我的js文件:
Dropzone.options.fileupload = {
maxFilesize: 20,
init: function () {
thisDropzone = this;
this.on("error", function (file, responseText) {
$.each(responseText, function (index, value) {
alert( value); //this shows the alert of the error message
});
});
}
};
我的控制器:
$this->validate($request, [
'file' => 'max:20000',
]);
答案 0 :(得分:0)
我已经解决了我的问题。
对任何可能遇到同样问题的人。
我通过简单地添加$('.dz-error-message').text(value);
完整代码:
Dropzone.options.fileupload = {
maxFilesize: 50,
init: function () {
thisDropzone = this;
this.on("error", function (file, responseText) {
$.each(responseText, function (index, value) {
$('.dz-error-message').text(value);
});
});
}
};