2011-09-09 10:15

[jQuery] 等待多個 Ajax 請求完成

最近在找等待多個 Ajax 完成的方法,找到 jQuery.when函数分析這篇文章中有處理多個 Ajax 的方法,但對於數量不固定的狀況,jQuery.when 輸入參數的方式實在有點討厭,必須要指定 Ajax 的數量,還好想起有 apply 這個方法可以用,可以將 array 轉換成呼叫 function 的參數,這樣不管有多少數量,都可以很輕鬆的帶入到 jQuery.when 中。

  1. /*將多個 Ajax 加到 array 中*/ 
  2. var ajaxRequest=[]; 
  3. for (var i=0; i<10; i++){ 
  4.    ajaxRequest.push( 
  5.        $.ajax({ 
  6.            data: {'a':i}, 
  7.            success: function(data) { 
  8.                console.log(data); 
  9.            } 
  10.        }) 
  11.    ); 
  12. }; 
  13.  
  14. /*利用 apply 將 ajaxRequest 帶入 jQuery.when*/ 
  15. var der=$.when.apply( $, ajaxRequest ) 
  16.  
  17. der.always(function() { 
  18.    console.log(arguments); 
  19.    alert('全部結束'); 
  20. });         
  21. der.done(function() { 
  22.    console.log(arguments); 
  23.    alert('全部成功'); 
  24. });         

0 回應: