javascript – ‘catch’如何在本机Promise链中工作?

前端之家收集整理的这篇文章主要介绍了javascript – ‘catch’如何在本机Promise链中工作?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在Chrome或Firefox的控制台选项卡上试用这段代码
var p = new Promise(function(resolve,reject) {
    setTimeout(function() {
        reject(10);
    },1000)
})

p.then(function(res) { console.log(1,'succ',res) })
.catch(function(res) { console.log(1,'err',res) })
.then(function(res) { console.log(2,res) })
.catch(function(res) { console.log(2,res) })

结果将是

1 "err" 10
2 "res" undefined

我已经尝试了很多其他的例子,但似乎第一个then()返回一个总是解析但永不拒绝的promise.我在Chrome 46.0.2490.86和Firefox 42.0上试过这个.为什么会这样?我以为then()和catch()可以链多次?

解决方法

就像在同步代码中一样:
try { 
    throw new Error();
} catch(e) {
    console.log("Caught");
}
console.log("This still runs");

处理异常后运行的代码将运行 – 这是因为异常是一种错误恢复机制.通过添加该捕获,您发出错误已被处理的信号.在同步的情况下,我们通过重新抛出来处理:

try { 
    throw new Error();
} catch(e) {
    console.log("Caught");
    throw e;
}
console.log("This will not run,still in error");

承诺的工作方式类似:

Promise.reject(Error()).catch(e => {
      console.log("This runs");
      throw e;
 }).catch(e => {
      console.log("This runs too");
      throw e;
 });

作为提示 – 永远不要拒绝非错误,因为你失去了很多有用的东西,如有意义的堆栈跟踪.

原文链接:https://www.f2er.com/js/149974.html

猜你在找的JavaScript相关文章