Это мой контроллер, в котором я возвращаю ошибку
if(!empty($chckDocsDup)){
$return['error'] = 1;
return response()->json($return);
exit();
}
В моей Dropzone я получаю эти ошибки, используя this.on('error', function())
, но не удалось предупредить.Любая альтернативная идея?
$(document).ready(function () {
var uplodURLother = '{{url(ADMIN."/uploaddocument")}}';
var metaTokenOther = $('meta[name="_token"]').attr('content');
var uploaddoctypeOther = $('#uploaddoctype_other').val();
Dropzone.options.myDropOther = {
acceptedFiles: ".pdf,.doc,.docx",
url: uplodURLother,
sending: function(file, xhr, formData) {
formData.append("_token", metaTokenOther);
formData.append("doctype", uploaddoctypeOther);
formData.append("candidateid", '{{$candidateDet['candidateid'] }}');
},
init: function() {
this.on("removedfile", function(file) {
$(".remv_"+file.doctype+"_"+file.filecnt).remove();
});
this.on('success', function(file, response) {
alert('hai');
});
this.on('error', function(file, response) {
alert('response'); //This alert is not working
});
}
};
});