gpt4 book ai didi

javascript - 从 dropzone 的 ajax 响应中获取响应文本

转载 作者:搜寻专家 更新时间:2023-11-01 05:11:51 26 4
gpt4 key购买 nike

我从 dropzone 成功上传得到以下响应。

我需要从这里获取响应文本

我试过:console.log(response.xhr.responseText) 这会显示完整的响应文本。

当我尝试像这样console.log(response.xhr.responseText.img) 从responseText 获取img 时,控制台抛出undefined

最佳答案

在您的示例中,reexponse.xhr.responseText 的值是一个字符串,而不是一个对象。您可以将字符串解析为对象并访问 img 属性:

(JSON.parse(response.xhr.responseText)).img

...但是,由于 Dropzone success 事件获得了 file 对象和解析的 responseText,您可以编写一个 像这样的成功处理程序:

new Dropzone("#myUploader", { 
url: "/upload",
init: function () {
this.on("success", function (file, responseText) {
console.log(responseText.img);
});
}
});

有关更多信息,请查看 the FAQ .

关于javascript - 从 dropzone 的 ajax 响应中获取响应文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23374228/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com