如何在 dropzonejs 中获取服务器响应
How to get server response in dropzonejs
我正在使用 dropzonejs 上传图片。
我希望在文件成功上传后获得服务器响应。
我怎样才能得到它?
你可以试试这样的方法。
HTML代码
<form id="myform" action="/youraction"></form>
JavaScript代码
Dropzone.options.myform={
success: function(file, response){
//Here you can get your response.
console.log(response);
}
}
在成功方法中,您将获得最新上传的文件和服务器响应。
了解更多信息。 https://www.dropzonejs.com/
您可以使用成功事件。
Dropzone.options.myDropzone = {
init: function() {
thisDropzone = this;
this.on("success", function(file, responseText) {
var responseText = file.id // or however you would point to your assigned file ID here;
console.log(responseText); // console should show the ID you pointed to
// do stuff with file.id ...
});
}
};
我正在使用 dropzonejs 上传图片。
我希望在文件成功上传后获得服务器响应。
我怎样才能得到它?
你可以试试这样的方法。
HTML代码
<form id="myform" action="/youraction"></form>
JavaScript代码
Dropzone.options.myform={
success: function(file, response){
//Here you can get your response.
console.log(response);
}
}
在成功方法中,您将获得最新上传的文件和服务器响应。 了解更多信息。 https://www.dropzonejs.com/
您可以使用成功事件。
Dropzone.options.myDropzone = {
init: function() {
thisDropzone = this;
this.on("success", function(file, responseText) {
var responseText = file.id // or however you would point to your assigned file ID here;
console.log(responseText); // console should show the ID you pointed to
// do stuff with file.id ...
});
}
};