链承诺并使用所有变量

时间:2014-12-24 04:46:37

标签: javascript promise

我正在尝试使用Promises API使用Javascript进行一些提取,然后使用我刚刚提取的所有值。有点像...

// Use an Id to find thing 1, use thing 1 Id to find thing2, use thing 2 id to find thing 3, 
// then use all of them.
thing1model.findById(thing1id).then(function(thing1) {
    return thing2model.findById(thing1.id);
}).then(function(thing2) {
    return thing3model.findById(thing2.id);
}).then(function(thing3) {
    // Here I want to use all of thing1, thing2, thing3...
    someFunction(thing1, thing2, thing3);
}).catch(function(err) {
    console.log(err);
});

问题是thing1thing2在函数调用后超出范围。如何在上一个then函数中使用它们?

1 个答案:

答案 0 :(得分:2)

您可以将thing1thing2保存在链上方范围内声明的变量中。

像这样,

var thing1Data, thing2Data
thing1model.findById(thing1id).then(function(thing1) {
    thing1Data = thing1
    return thing2model.findById(thing1.id);
}).then(function(thing2) {
    thing2Data = thing2
    return thing3model.findById(thing2.id);
}).then(function(thing3) {
    someFunction(thing1Data, thing2Data, thing3);
}).catch(function(err) {
    console.log(err);
});