如何在 .then() 链中访问以前的承诺结果?打破枷锁ECMAScript Harmony
我已经将代码重组为承诺,并构建了一个由多个回调组成的长扁平承诺链。最后,我想返回一些复合值,并且需要访问多个中间承诺结果。但是,序列中间的分辨率值不在上一个回调的范围内,我如何访问它们?.then()
function getExample() {
return promiseA(…).then(function(resultA) {
// Some processing
return promiseB(…);
}).then(function(resultB) {
// More processing
return // How do I gain access to resultA here?
});
}