包含在函数中的异步AJAX请求将无法与promise()一起使用

时间:2012-08-14 11:28:19

标签: javascript jquery ajax asynchronous

我正在执行wrapped函数的异步AJAX请求。其中$ .ajax是Deferred对象,我可以正确使用.promise(检查:最初加载)然后我将无法对'now really loaded'执行相同的操作,这将在ajax完成加载之前执行。

function WSCall(method, data, callback, type, async, bg) {
    // .. code ..
    var promise = $.ajax({
        'url': useSampleData ? useSampleData || null,
        //'async': false,
        'type': 'POST',
        'dataType': (type == null) ? 'json' : type,
        'data': data,
        'beforeSend': bg ? null : LoadingBegin,
        'complete': bg ? null : LoadingEnd,
        'success': callback,
        'error' : bg ? null : function(jqXHR, textStatus, errorThrown) { networkError = 1; }
    });

    promise.done(function(){ console.log('Initially loaded') });
}

function aSyncEvent() { 
    WSCall(
        'status',
        {},
        function (data) {
            if (data.error) { 
                console.log('Error occured'); return ShowDialogAlert(data.error); }
            if (data.statusResult) {
                var parts = data.statusResult.split('-');
                if (parts[1] === '0') { 
                    sId = parts[0]; 
                    console.log('Wow its loaded!'); 
                    return true; 
                }               
            }
        }
    )   
}

$.when( aSyncEvent() ).then( function () { console.log('now really loaded')});

最初加载并且Wow加载后将正确显示ajax按正确顺序执行后,但是“现在真正加载”将在ajax执行完毕之前出现。

我请求帮助解决这个问题。

由于 麦克

1 个答案:

答案 0 :(得分:0)

您是否尝试过延期退货?

function WSCall(method, data, callback, type, async, bg) {
    // .. code ..
    return promise.done(function(){ console.log('Initially loaded') });
}

function aSyncEvent() { 
    return WSCall(
        // .. code ..
    );
}