我正在构建一个AngularJs应用程序,我正在使用DropzoneJs的dropzone。我需要使用成功和错误回调,因为我必须访问服务器响应。我有一个问题,如果我使用回调,那么previewTemplate会改变......那么,我可以在回调中更改previewTemplate吗?
如果我不使用回调,这里是结果模板和代码:
var myDropzone = $("#storageDropzone").dropzone({
url: firstUrl,
});
如果我使用回调,则“tick”或“cross”不显示:
var myDropzone = $("#storageDropzone").dropzone({
url: firstUrl,
error: function (file, response) {
console.log("Erro");
console.log(response);
},
success: function (file, response) {
console.log("Sucesso");
console.log(response);
},
complete: function (file) {
console.log("Complete");
}
});
那么,我可以在回调中更改previewTemplate吗?或者简单地说,保留存在的那个?
答案 0 :(得分:2)
所以,这是我找到的解决方法......
我没有使用回调,而是对init函数进行了更改。虽然这个答案并不能让我满意,但它是我现在能做的最好的...如果有人能够解释为什么它在init上工作但不能作为回调随意回答。
这是解决方案:
var myDropzone = $("#storageDropzone").dropzone({
init: function () {
this.on("processing", function (file) {
$scope.$apply($scope.working = true);
this.options.url = lastUrl;
$scope.$apply($scope.processing = true);
});
this.on("success", function (file, response) {
console.log("sucesso");
var ficheiro = { nome: file.name, link: response[0] };
$scope.$apply($scope.uploadedFiles.push(ficheiro));
});
this.on("error", function (file, error, xhr) {
var ficheiro = { nome: file.name, status: xhr.status, statusText: xhr.statusText, erro: error.message };
$scope.$apply($scope.errorFiles.push(ficheiro));
});
}
答案 1 :(得分:0)
我认为正在发生的事情是,由于您要覆盖默认的DropZone“错误”和“成功”回调函数,因此不会在文件上载图块上创建“刻度”和“交叉”。并非模板已更改;而是模板已更改。您将覆盖默认的DropZone错误和成功行为。为了显示“ tick”和“ cross”,您需要将代码从默认的DropZone错误和成功回调函数复制到函数中,然后实现所需的任何其他行为或更改的行为。