为了账号安全,请及时绑定邮箱和手机立即绑定

使用jQuery在失败时重试AJAX请求的最佳方法是什么?

使用jQuery在失败时重试AJAX请求的最佳方法是什么?

DIEA 2019-10-24 15:18:29
伪代码:$(document).ajaxError(function(e, xhr, options, error) {  xhr.retry()})更好的是某种指数补偿
查看完整描述

3 回答

?
慕仙森

TA贡献1827条经验 获得超7个赞

像这样:



$.ajax({

    url : 'someurl',

    type : 'POST',

    data :  ....,   

    tryCount : 0,

    retryLimit : 3,

    success : function(json) {

        //do something

    },

    error : function(xhr, textStatus, errorThrown ) {

        if (textStatus == 'timeout') {

            this.tryCount++;

            if (this.tryCount <= this.retryLimit) {

                //try again

                $.ajax(this);

                return;

            }            

            return;

        }

        if (xhr.status == 500) {

            //handle error

        } else {

            //handle error

        }

    }

});


查看完整回答
反对 回复 2019-10-24
  • 3 回答
  • 0 关注
  • 1351 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信