为什么我不能在 catch 回调中抛出一个 Error
,让进程像处理其他作用域一样处理这个错误呢?
如果我不做 console.log(err)
什么都不会被打印出来,我对发生了什么一无所知。这个过程就结束了..。
例如:
function do1() {
return new Promise(function(resolve, reject) {
throw new Error('do1');
setTimeout(resolve, 1000)
});
}
function do2() {
return new Promise(function(resolve, reject) {
setTimeout(function() {
reject(new Error('do2'));
}, 1000)
});
}
do1().then(do2).catch(function(err) {
//console.log(err.stack); // This is the only way to see the stack
throw err; // This does nothing
});
如果回调在主线程中执行,为什么 Error
会被黑洞吞噬?