如何使用jQuery获取HTTP状态代码?

0yg35tkg  于 2023-01-04  发布在  jQuery
关注(0)|答案(9)|浏览(193)

我想检查一个页面是否返回状态代码401。可以吗?
下面是我的尝试,但它只返回0。

$.ajax({
    url: "http://my-ip/test/test.php",
    data: {},
    complete: function(xhr, statusText){
    alert(xhr.status); 
    }
});
nkkqxpd9

nkkqxpd91#

这可以通过jQuery $.ajax()方法实现

$.ajax(serverUrl, {
   type: OutageViewModel.Id() == 0 ? "POST" : "PUT",
   data: dataToSave,
   statusCode: {
      200: function (response) {
         alert('1');
         AfterSavedAll();
      },
      201: function (response) {
         alert('1');
         AfterSavedAll();
      },
      400: function (response) {
         alert('1');
         bootbox.alert('<span style="color:Red;">Error While Saving Outage Entry Please Check</span>', function () { });
      },
      404: function (response) {
         alert('1');
         bootbox.alert('<span style="color:Red;">Error While Saving Outage Entry Please Check</span>', function () { });
      }
   }, success: function () {
      alert('1');
   },
});
kmynzznz

kmynzznz2#

第三个参数是XMLHttpRequest对象,因此可以执行任何操作。

$.ajax({
  url  : 'http://example.com',
  type : 'post',
  data : 'a=b'
}).done(function(data, statusText, xhr){
  var status = xhr.status;                //200
  var head = xhr.getAllResponseHeaders(); //Detail header info
});
xhv8bpkk

xhv8bpkk3#

使用错误回调。
例如:

jQuery.ajax({'url': '/this_is_not_found', data: {}, error: function(xhr, status) {
    alert(xhr.status); }
});

将警报404

wztqucjr

wztqucjr4#

我认为您还应该实现$.ajax方法的error函数。
error(XMLHttpRequest,文本状态,错误抛出)函数
请求失败时调用的函数。该函数传递了三个参数:XMLHttpRequest对象,一个描述发生的错误类型的字符串和一个可选的exception对象(如果发生)。第二个参数的可能值(除null外)为“timeout”、“error”、“notmodified”和“parsererror”。

$.ajax({
    url: "http://my-ip/test/test.php",
    data: {},
    complete: function(xhr, statusText){
        alert(xhr.status); 
    },
    error: function(xhr, statusText, err){
        alert("Error:" + xhr.status); 
    }
});
kq0g1dla

kq0g1dla5#

我发现了这个解决方案,您可以简单地使用status code检查服务器响应代码。

示例:

$.ajax({
type : "POST",
url : "/package/callApi/createUser",
data : JSON.stringify(data),
contentType: "application/json; charset=UTF-8",
success: function (response) {  
    alert("Account created");
},
statusCode: {
    403: function() {
       // Only if your server returns a 403 status code can it come in this block. :-)
        alert("Username already exist");
    }
},
error: function (e) {
    alert("Server error - " + e);
} 
});
ruoxqz4g

ruoxqz4g6#

$.ajax({
    url: "http://my-ip/test/test.php",
    data: {},
    error: function(xhr, statusText, errorThrown){alert(xhr.status);}
});
ghhaqwfi

ghhaqwfi7#

我将jQuery Ajax封装到一个方法中:

var http_util = function (type, url, params, success_handler, error_handler, base_url) {

    if(base_url) {
        url = base_url + url;
    }

    var success = arguments[3]?arguments[3]:function(){};
    var error = arguments[4]?arguments[4]:function(){};


    $.ajax({
        type: type,
        url: url,
        dataType: 'json',
        data: params,
        success: function (data, textStatus, xhr) {

            if(textStatus === 'success'){
                success(xhr.code, data);   // there returns the status code
            }
        },
        error: function (xhr, error_text, statusText) {

            error(xhr.code, xhr);  // there returns the status code
        }
    })

}

用法:

http_util('get', 'http://localhost:8000/user/list/', null, function (status_code, data) {
    console(status_code, data)
}, function(status_code, err){
    console(status_code, err)
})
w7t8yxp5

w7t8yxp58#

AJAX + jQuery v3从JSON API获取响应状态代码和数据时,我遇到了一些大问题。jQuery.ajax只在状态成功时才解码JSON数据,而且它还根据状态代码交换回调参数的顺序。
解决这个问题的最好方法是调用.always chain方法并做一些清理。

$.ajax({
        ...
    }).always(function(data, textStatus, xhr) {
        var responseCode = null;
        if (textStatus === "error") {
            // data variable is actually xhr
            responseCode = data.status;
            if (data.responseText) {
                try {
                    data = JSON.parse(data.responseText);
                } catch (e) {
                    // Ignore
                }
            }
        } else {
            responseCode = xhr.status;
        }

        console.log("Response code", responseCode);
        console.log("JSON Data", data);
    });
unguejic

unguejic9#

使用Jquery获取v.3.3.1.

var reqUrl = '/your/web/url';
$.get(reqUrl, function(data, status, xhr){
       console.log("Data: " + JSON.stringify(data) + "\nStatus Code: " + xhr.status); 
}, 'json');

相关问题