我的代码同时创建了两个ajax调用(我认为并行性会更有效)。如果两个调用都成功,我想加载一个表。这样做的正确方法是什么?

最佳答案

var succeeded = {};

function callBackOne(){
     succeeded.one = true;
     // your other stuff
     if (succeeded.two) { bothHaveSucceeded());
}


function callBackTwo(){
     succeeded.two = true;
     // your other stuff
     if (succeeded.one) { bothHaveSucceeded());
}

08-15 21:04