我打算使用dropzone,我是新手,我正在阅读一些文件
我打算使用dropzone作为用户界面并上传到服务器,使用其他一些API,所以如何告诉dropzone使用我的自定义方法并将成功或失败传递给用户界面
我发现了其他一些有趣的帖子,例如enter link description here
答案 0 :(得分:0)
您可以设置init()功能并等待响应:
Dropzone.options.dropzoneForm = {
init: function () {
this.on("complete", function (data) {
var res = JSON.parse(data.xhr.responseText);
//use the request's statusCode anyway you want to
if(data.xhr.status === 200)
{
//modify the UI
}
});
}
dictResponseError: "error message when failed"
};