gpt4 book ai didi

javascript - 处理ajax错误

转载 作者:行者123 更新时间:2023-11-28 11:19:21 26 4
gpt4 key购买 nike

$.getJSON("test.php", function(json) {
... this function handles success
});

如何处理当前 $.getJSON 的错误?

最佳答案

我认为没有直接使用 getJSON 的选项,而是使用 ajax 方法:

$.ajax({
url: "test.php",
dataType: "json",
data: data,
success: function(data){
},
error: function(data){
//ERROR HANDLING
}
});

关于javascript - 处理ajax错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4880517/

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