我已将代码重构为承诺,并构建了一个精彩的长扁平承诺链,由多个.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?
});
}