web-dev-qa-db-ja.com

タイムアウト付きのjQuerygetJSON

Yahoo Webサービス(http://boss.yahooapis.com/ysearch)を呼び出してデータセットを返す場合、タイムアウトを設定して、ルーチンが経過したら終了することはできますか?

jQuery.getJSON("http://boss.yahooapis.com/ysearch/...etc",
        function (data) {
              //result set here
            });
13
Scott B

タイムアウトオプションを使用できます

http://api.jquery.com/jQuery.ajax/

$.ajax({
  url: url,
  dataType: 'json',
  data: data,
  success: callback,
  timeout: 3000 //3 second timeout
});
16
Galen
 $.ajax({ 
  url: url, 
  dataType: 'json', 
  data: data, 
  success: callback, 
  timeout: 3000 //3 second timeout, 
  error: function(jqXHR, status, errorThrown){   //the status returned will be "timeout" 
     //do something 
  } 
}); 
15
anson chow
    function testAjax() {
        var params = "test=123";
        var isneedtoKillAjax = true; // set this true

        // Fire the checkajaxkill method after 10 seonds
        setTimeout(function() {
            checkajaxkill();
        }, 10000); // 10 seconds                

        // For testing purpose set the sleep for 12 seconds in php page 

        var myAjaxCall = jQuery.getJSON('index2.php', params, function(data, textStatus){               
            isneedtoKillAjax = false; // set to false
            // Do your actions based on result (data OR textStatus)
        }); 

        function checkajaxkill(){

            // Check isneedtoKillAjax is true or false, 
            // if true abort the getJsonRequest

            if(isneedtoKillAjax){
                myAjaxCall.abort();
                alert('killing the ajax call');                 
            }else{
                alert('no need to kill ajax');
            }
        }
    }
7
Mahesh

Galenによって提案されたタイムアウトオプションが最良の方法です。別の方法が必要な場合は、リクエストが開始された時刻を記録し、コールバックで現在の時刻と比較できます。一定の時間が経過した場合は、結果を無視してください。もちろん、これはリクエストをキャンセルしません。

0
Chris Laplante