jq中ajax处理错误,jQuery AJAX错误处理(HTTP状态代码)

我们有一个API,它使用适当的HTTP状态代码进行错误,并使用JSON编码的响应和适当的Content-Type标头进行响应。我的情况是,当遇到HTTP错误状态时,jQuery.ajax()会触发错误回调,而不是成功回调,所以即使我们有一个可理解的JSON响应,我们也不得不诉诸于此:

$.ajax({

// ...

success: function(response) {

if (response.success) {

console.log('Success!');

console.log(response.data);

} else {

console.log('Failure!');

console.log(response.error);

}

},error: function(xhr,status,text) {

var response = $.parseJSON(xhr.responseText);

console.log('Failure!');

if (response) {

console.log(response.error);

} else {

// This would mean an invalid response from the server - maybe the site went down or whatever...

}

}

});

有没有比在每个jQuery.ajax()调用两个地方做相同的错误处理更好的范例?这不是很干,我相信在这些情况下,我刚刚错过了一些好的错误处理方法。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值