搜尋

首頁  >  問答  >  主體

node.js - promise中第3个then分别用第一个和第二个then返回的参数该如何写呢?

testObject

.func1()
.then((result)=>{
    return r1;
})
.then((result1)=>{
    return r2;
})
.then((result2)=>{
    func(r1,r2);
})

请问如果要实现这样的逻辑该如何呢?
阮一峰的原文如下:

then方法返回的是一个新的Promise实例(注意,不是原来那个Promise实例)。因此可以采用链式写法,即then方法后面再调用另一个then方法。

getJSON("/posts.json").then(function(json) {
  return json.post;
}).then(function(post) {
  // ...
});
上面的代码使用then方法,依次指定了两个回调函数。第一个回调函数完成以后,会将返回结果作为参数,传入第二个回调函数。

似乎只是一层一层的传递参数,请问如何将1,2的then传递给3呢,或者一次性传递2个参数。

迷茫迷茫2777 天前564

全部回覆(2)我來回復

  • 天蓬老师

    天蓬老师2017-04-17 14:43:33

    Promise.all

    雷雷

    https://developer.mozilla.org...

    回覆
    0
  • 天蓬老师

    天蓬老师2017-04-17 14:43:33

    1. 經由第二個then傳到第三個then。

    2. 設定父級局域變數儲存。

    回覆
    0
  • 取消回覆