我很难理解将.catch
BEFORE和AFTER放在嵌套诺言中的区别。
选择1:
test1Async(10).then((res) => {
return test2Async(22)
.then((res) => {
return test3Async(100);
}).catch((err) => {
throw "ERROR AFTER THEN";
});
}).then((res) => {
console.log(res);
}).catch((err) => {
console.log(err);
});
选择2:
test1Async(10).then((res) => {
return test2Async(22)
.catch((err) => {
throw "ERROR BEFORE THEN";
})
.then((res) => {
return test3Async(100);
});
}).then((res) => {
console.log(res);
}).catch((err) => {
console.log(err);
});
每个函数的行为如下,如果号码是test1的失败<0
,如果号码是test2的失败> 10
,如果数量不TEST3失败100
。在这种情况下,test2仅失败。
我尝试运行并使test2Async失败,然后在执行之前和之后都以相同的方式运行,并且未执行test3Async。有人可以向我解释在不同地方放置渔获物的主要区别吗?
在每个函数中,我console.log('Running test X')
为了检查它是否被执行。
出现此问题的原因是我发布的上一个线程如何将嵌套回调转换为Promise?。我认为这是一个不同的问题,值得发表另一个话题。