等到承诺和嵌套版本完成

时间:2013-01-05 15:28:04

标签: javascript jquery-deferred promise

我从这样的函数返回一个承诺:

resultPromise = dgps.utils.save(opportunity, '/api/Opportunity/Save', opportunity.dirtyFlag).then(function () {

                self.checklist.saveChecklist(opportunity).then(function () {

                    self.competitor.save(opportunity.selectedCompetitor()).then(function ... etc.
return resultPromise;

假设上面的函数叫做save​​。

在我想做的调用函数中,等待整个链完成然后再做一些事情。我的代码看起来像这样:

var savePromise = self.save();
savePromise.then(function() {
    console.log('aftersave');
});

结果是,当承诺链仍在运行时,'aftersave'被发送到控制台。

在整个链条完成后我该怎么做?

1 个答案:

答案 0 :(得分:8)

不是嵌套承诺,而是将它们链接起来。

resultPromise = dgps.utils.save(opportunity, '/api/Opportunity/Save', opportunity.dirtyFlag).then(function () {

                    return self.checklist.saveChecklist(opportunity);
                }).then(function () {

                    return self.competitor.save(opportunity.selectedCompetitor());
                }).then(function () {
                    // etc
                });

// return a promise which completes when the entire chain completes
return resultPromise;