如何在jQuery getJSON调用中捕获400响应

时间:2012-11-14 06:13:12

标签: javascript jquery ajax json http-status-code-400

在jQuery中我想使用$.getJSON()方法从Facebook获取一些数据,但如果令牌无效,Facebook将返回400状态。如何在$.getJSON()而不是$.ajax()中捕获错误?

3 个答案:

答案 0 :(得分:8)

我认为这对你有用

$.getJSON("example.json", function() {
  alert("success");
})
.success(function() { alert("success 2"); })
.error(function() { alert("error occurred "); })
.complete(function() { alert("Done"); });

答案 1 :(得分:6)

jquery Ajax docs提供两种解决方案,第一种是错误函数:

    error(jqXHR, textStatus, errorThrown)

为您检测并报告错误消息的文本部分,另一个是状态代码功能(在同一页面上)。以下是该页面的示例用法:

    $.ajax({
      statusCode: {
        404: function() {
          alert("page not found");
        }
      }
    });

答案 2 :(得分:2)

使用complete(jqXHR, textStatus)函数回调并调查响应并向用户显示相应的消息。