这是我的AJAX代码:
jQuery.ajax({url: url,
method: 'GET',
data: getParams,
/*success: function (json, textStatus, jqXHR) {
if(jQuery.active <= 1){
waitDialog.removeWaitDialog();
}
createProcessButtonEvent();
ajaxError = false;
returnFunction(jqXHR.responseJSON);
},*/
complete: function(jqXHR, textStatus, errorThrown) {
if(jQuery.active <= 1){
waitDialog.removeWaitDialog();
}
createProcessButtonEvent();
var response;
if (typeof jqXHR.responseJSON === 'object') {
response = jqXHR.responseJSON;
} else {
response = jqXHR.responseText;
}
if(response.errors.length == 1){ // jsonResults.message != ''
if(!warningMessage){ //hard coded for ad designer
jQuery('#alertMessageText').text(response.errors[0].message);
jQuery('#alertMessage').show();
jQuery('#waitDialog').jqmHide();
ajaxError = true;
return;
}
warningMessage.displayMessage(response.errors[0].message);
jQuery('.popup').modal('hide');
jQuery('.popup').not('.persist').remove();
}
if (response.errors.length > 1){
for(var n = 0; n < response.errors.length; n++){
if (response.errors[n].id == 1){ // 2005
window.location.href = '/login?destination=' + encodeURIComponent(window.location.pathname + window.location.search);
}
if (response.errors[n].id == 9500){
statusMessage.displayMessage(response.errors[n].message);
}
}
ajaxError = true;
//if(errorFunction){
// errorFunction(jsonResults);
//}
waitDialog.removeWaitDialog();
}
if (!ajaxError) {
returnFunction(jqXHR.responseJSON);
}
},
dataType: 'json',
contentType: 'application/json'
});
我告诉它转到http://127.0.0.1/api/parameter
,其中parameter
是无效资源。我的API在新标签中返回:
{"errors":[{"id":3,"message":"GET route not defined for /api/parameter"}],data:{}}
我让它返回500状态代码,因为访问无效资源是一个错误。当我调用实际的AJAX时,jqXHR.responseJSON
为null
,jqXHR.responseText
为''
。
我已尝试同时使用success:
和error:
块,并尝试complete:
,因为看起来我的API在调用错误块后解析了调用,因为您可以看到评论。
所以我得到了TypeError: response is null
,因为我的响应对象从未被填充过,最奇怪的是我对parameter?parameters=here
的调用永远无法在网络中进行检查
答案 0 :(得分:1)
由于我可以控制API,因此我将此特定错误更改为返回状态代码501 Not Implemented而不是500,并且它似乎有效。看起来这是一个非常独特的边缘情况。