gpt4 book ai didi

jquery - 获取 AJAX 响应正文以在错误回调中使用

转载 作者:行者123 更新时间:2023-12-03 21:27:38 27 4
gpt4 key购买 nike

jQuery的AJAX错误函数有以下参数:

error(XMLHttpRequest, textStatus, errorThrown)

获取响应正文的最佳跨浏览器方式是什么?

这有效吗(在所有浏览器中可靠)?

$.ajax({
error: function(http) {
alert(http.responseText);
}
});

最佳答案

从 jQuery 1.4.1 开始,您应该使用:

var json = JSON.parse(xhr.responseText);

参见http://api.jquery.com/jQuery.parseJSON/ .

关于jquery - 获取 AJAX 响应正文以在错误回调中使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2084484/

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