如何停止AJAX进行多次调用



我正在使用jquery倒计时计时器插件(http://keith-wood.name/countdown.html)以显示时间。我正在调用一个函数,以便在回调事件"onTick"上添加更多时间。当时间倒计时到00:00:00时,函数将进行ajax调用以添加额外的时间。它工作正常,但每次计时器等于00时,ajax都会进行多次调用(>15)。我怎样才能只发一个电话?我试着做async:false,但它仍然在进行多个调用。非常感谢。

$(this).countdown({ until: time, format: 'HMS', onTick: addExtraTime });
function addExtraTime() {      
 if ($.countdown.periodsToSeconds(periods) === 00) {
            var postValue = { ID: id }
            if (!ajaxLoading) {
                ajaxLoading = true;
                $.ajax({
                    url: "@Url.Action("AddExtraTime", "Home")",
                    type: 'post',
                dataType: 'json',
                contentType: "application/json",
                data: JSON.stringify(postValue),
                success: function() {
                    // show success
                },
                error: function(data) {
                    // show error
                }
            });
            ajaxLoading = false;
        }
      }
    }

您有一个变量ajaxLoading,用于确定Ajax请求是否正在运行,但在调用$.ajax()后立即将其设置为false,而不是在获得响应时。在成功和错误处理程序中将其设置为false

即使ajax请求仍在执行,也要设置ajaxLoading = false;,在请求完成后将其设置为false

        if (!ajaxLoading) {
            ajaxLoading = true;
            $.ajax({
                url: "@Url.Action("AddExtraTime", "Home")",
                type: 'post',
            dataType: 'json',
            contentType: "application/json",
            data: JSON.stringify(postValue),
            success: function() {
                // show success
            },
            error: function(data) {
                // show error
            }
            complete: function(){
                 ajaxLoading = false;
            }
        });
        //ajaxLoading = false;
    }

相关内容

  • 没有找到相关文章

最新更新