1. ホーム
  2. javascript

[解決済み] jQueryを使用してAJAXリクエストに失敗した場合に再試行する最善の方法は何ですか?

2022-05-14 12:52:28

質問

擬似的なコードです。

$(document).ajaxError(function(e, xhr, options, error) {
  xhr.retry()
})

さらに良いのは、指数関数的なバックオフのようなものでしょう。

どのように解決するのですか?

このようなものです。


$.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
        }
    }
});