2

get_user_record() 这个函数调用在数据库中拉取数据的方法。我使用超时是因为我不想从这个方法中得到响应,showUpdatedProgressBar() 方法不断检查数据库计数并相应地为进度条赋值。为此,我使用了 setInterval() 函数,该函数正在工作,但我无法清除间隔。请建议我哪里出错了。

function get_user_record(){
        $.ajax({
                url:"/GetData",
                type: "GET",
                timeout: 2000,
                success:function(result){
                    //alert('success');
                },  
                error: function(xhr, status, err){ 
                    //alert('Connection Error. Please try again.')
                }

            });
            var timer = 0;
            showUpdatedProgressBar(timer);
        }

    }
    function showUpdatedProgressBar(timer){

        $.ajax({
            url:"/get_updated_data",
            type: "GET",
            success:function(result){
                result = result.split(',');
                var obj = {totalRecords: result[0], recordsTaken: result[1]};
                var bar_value = obj.recordsTaken/obj.totalRecords * 100;
                $( "#progressbar" ).progressbar({ value: bar_value });

                if(obj.recordsTaken == obj.totalRecords ){
                    clearInterval(timer);                   
                }
                else
                {
                    timer = setInterval(function(){ showUpdatedProgressBar(timer) },1000);
                }
            }           
        });
    }
4

2 回答 2

2

以前我在本地定义了 var timer 并设置为 0 现在它只需要定义 var timer 就可以工作;全局而不是将其设置为零

于 2013-04-27T11:39:48.643 回答
1

timer = setInterval(function(){ showUpdatedProgressBar(timer) },1000);

'timer' 在每次递归迭代时都被分配一个新的间隔 id(它被覆盖)。因此,在 clearInterval 中只会使用最后生成的 id。

于 2013-04-27T11:01:48.987 回答