gpt4 book ai didi

jQuery ajax XML Http 请求不起作用

转载 作者:行者123 更新时间:2023-12-03 22:20:11 25 4
gpt4 key购买 nike

由于 jQuery 中的 Ajax 请求,出现未定义的错误。但它在本地有效。 jquery1.3.2.js @ 3633 行中引用错误

xhr.send(s.data);

我的代码是:

$.ajax({
type: "POST",
url: 'index.php',
data: "action=showpath&type=images&path=&default=1",
cache: false,
dataType: "html",
success: function (data) {
$('#addr').html(data);
},
error: function (xhr, ajaxOptions, thrownError) {
alert(xhr.status);
alert(thrownError);
}
});

代码中的警报显示我(0,'未定义');

我做错了什么?

最佳答案

如果您的 ajax 请求在完成之前被取消,则可能会发生这种情况。当用户通过刷新、单击链接或更改浏览器中的 URL 离开页面时,jQuery 会引发错误事件。您可以通过为 ajax 调用实现错误处理程序并检查 xmlHttpRequest 对象来检测这些类型的错误:

$.ajax({
/* ajax options omitted */
error: function (xmlHttpRequest, textStatus, errorThrown) {
if(xmlHttpRequest.readyState == 0 || xmlHttpRequest.status == 0)
return; // it's not really an error
else
// Do normal error handling
});

关于jQuery ajax XML Http 请求不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1023867/

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