我正在使用 jQuery ajax 函数从我的网络服务中获取一些内容。收到来自服务器的响应,但每次调用错误回调而不是成功回调。
这个错误在 xhr.error 中返回:
function (){if(l){var t=l.length;(function i(t){x.each(t,function(t,n){var r=x.type(n);"function"===r?e.unique&&p.has(n)||l.push(n):n&&n.length&&"string"!==r&&i(n)})})(arguments),n?o=l.length:r&&(s=t,c(r))}return this}
这是服务器响应的屏幕截图:
这是我用来发出请求的代码:
function abcdef()
{
$.ajax({
url: "http://192.168.61.129:8000/get-yt-access-token/",
type: "GET",
contentType:"application/json",
error: function(xhr, textStatus, errorThrown){
alert("its error! " + xhr.error);
},
success: function(data){
alert(data);
}
});
}