处理此方案的最佳方法是什么。我处于受控环境中,我不想崩溃。
var Promise = require('bluebird');
function getPromise(){
return new Promise(function(done, reject){
setTimeout(function(){
throw new Error("AJAJAJA");
}, 500);
});
}
var p = getPromise();
p.then(function(){
console.log("Yay");
}).error(function(e){
console.log("Rejected",e);
}).catch(Error, function(e){
console.log("Error",e);
}).catch(function(e){
console.log("Unknown", e);
});
从setTimeout中投掷时,我们总是得到:
$ node bluebird.js
c:\blp\rplus\bbcode\scratchboard\bluebird.js:6
throw new Error("AJAJAJA");
^
Error: AJAJAJA
at null._onTimeout (c:\blp\rplus\bbcode\scratchboard\bluebird.js:6:23)
at Timer.listOnTimeout [as ontimeout] (timers.js:110:15)
如果抛出发生在setTimeout之前,那么bluebirds catch会将其拾起:
var Promise = require('bluebird');
function getPromise(){
return new Promise(function(done, reject){
throw new Error("Oh no!");
setTimeout(function(){
console.log("hihihihi")
}, 500);
});
}
var p = getPromise();
p.then(function(){
console.log("Yay");
}).error(function(e){
console.log("Rejected",e);
}).catch(Error, function(e){
console.log("Error",e);
}).catch(function(e){
console.log("Unknown", e);
});
结果:
$ node bluebird.js
Error [Error: Oh no!]
哪个好 - 但是如何在节点或浏览器中处理这种性质的流氓异步回调。
答案 0 :(得分:15)
Promise不是domains,它们不会捕获异步回调的异常。你不能这样做。
然而, Promise会捕获then
/ catch
/ Promise
构造函数回调中抛出的异常。所以使用
function getPromise(){
return new Promise(function(done, reject){
setTimeout(done, 500);
}).then(function() {
console.log("hihihihi");
throw new Error("Oh no!");
});
}
(或仅Promise.delay
)获得所需的行为。永远不要引入自定义(非承诺)异步回调,总是拒绝周围的承诺。如果确实需要,请使用try-catch
。
答案 1 :(得分:0)
感谢@Bergi。现在我知道promise在异步回调中没有捕获错误。这是我测试的3个例子。
注意:拒绝呼叫后,功能将继续运行。
示例1:拒绝,然后在promise构造函数回调中抛出错误
示例2:拒绝,然后在setTimeout异步回调中抛出错误
示例3:拒绝,然后返回setTimeout异步回调以避免崩溃
// Caught
// only error 1 is sent
// error 2 is reached but not send reject again
new Promise((resolve, reject) => {
reject("error 1"); // Send reject
console.log("Continue"); // Print
throw new Error("error 2"); // Nothing happen
})
.then(() => {})
.catch(err => {
console.log("Error", err);
});
// Uncaught
// error due to throw new Error() in setTimeout async callback
// solution: return after reject
new Promise((resolve, reject) => {
setTimeout(() => {
reject("error 1"); // Send reject
console.log("Continue"); // Print
throw new Error("error 2"); // Did run and cause Uncaught error
}, 0);
})
.then(data => {})
.catch(err => {
console.log("Error", err);
});
// Caught
// Only error 1 is sent
// error 2 cannot be reached but can cause potential uncaught error if err = null
new Promise((resolve, reject) => {
setTimeout(() => {
const err = "error 1";
if (err) {
reject(err); // Send reject
console.log("Continue"); // Did print
return;
}
throw new Error("error 2"); // Potential Uncaught error if err = null
}, 0);
})
.then(data => {})
.catch(err => {
console.log("Error", err);
});
答案 2 :(得分:0)
在处理了相同的场景并描述了您的需求之后,我发现了zone.js,这是一个了不起的javascript库,用于多个框架(Angular是其中之一),它使我们能够在一种非常优雅的方式。
区域是在异步任务之间持久存在的执行上下文。您可以将其视为JavaScript VM的线程本地存储
使用示例代码:
import 'zone.js'
function getPromise(){
return new Promise(function(done, reject){
setTimeout(function(){
throw new Error("AJAJAJA");
}, 500);
});
}
Zone.current
.fork({
name: 'your-zone-name',
onHandleError: function(parent, current, target, error) {
// handle the error
console.log(error.message) // --> 'AJAJAJA'
// and return false to prevent it to be re-thrown
return false
}
})
.runGuarded(async () => {
await getPromise()
})