.when

    1熱度

    1回答

    我想爲數組中的每個項目做一個ajax調用。現在我把所有的承諾到一個數組,然後做$ .when.apply ... // throw all the promises into an array _.each(birds,function(bird,i){ birds[i] = getBird(bird) // getBbird returns $.ajax(...) }); //

    1熱度

    2回答

    在下面的代碼中,我只需要在Gmaps導航器上調用valuea後才能呈現視圖。 直到我有緯度和經度我不能呈現視圖。 Followina這裏的一些答案我卡住了錯誤 對象[object global]沒有方法'afterRender 感謝您的任何建議。 initialize: function() { $.when(this.beforeRender).then(function(){

    1熱度

    1回答

    緩衝區數組我使用$.when在其他邏輯之前運行2個函數。現在,在幾種情況下,我需要在執行相同的邏輯之前運行一組不同的函數,所以我想將一組函數傳遞給$.when,但無法運行。 喜歡的東西: function funcA(){ console.log("funcA"); } function funcB(){ console.log("funcB") } var funcA

    1熱度

    3回答

    這是我的頁面的基本框架: $.when(postrequest1, postrequest2).then(function() { // how do I access the results of postrequest1 and postrequest 2 here? });

    0熱度

    3回答

    我需要做一個ajax請求,然後處理從服務器返回的一些數據。我想先提出這個請求,然後文件就緒。但是,只有在文檔準備就緒後,我才能夠處理數據。我有一個想法,使這樣的事情: $.when($(document).ready(), $.ajax(/*some request*/)).done(function(){//processing data from the server}); 它