Asynchronous Exception Handling with Bluebird Promises
Q: How to handle unhandled exceptions in asynchronous callbacks with Bluebird promises?
Bluebird promises do not inherently catch exceptions thrown from asynchronous callbacks, unlike domains.
A: Use Promise Constructors or then() Closures to Handle Exceptions
To catch exceptions in async callbacks, wrap the callback in a promise constructor or then() closure:
function getPromise(){
return new Promise(function(done, reject){
setTimeout(function(){
throw new Error("AJAJAJA");
}, 500);
}).then(function() {
console.log("hihihihi");
throw new Error("Oh no!");
});
}
Avoid Throwing in Custom Async Callbacks
Never throw exceptions directly in custom async callbacks (outside of promise callbacks). Instead, reject the surrounding promise:
function getPromise(){
return new Promise(function(done, reject){
setTimeout(done, 500);
}).then(function() {
console.log("hihihihi");
reject(new Error("Oh no!"));
});
}
Example
Using a promise constructor:
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);
});
Output:
Error [Error: Oh no!]
This approach ensures that exceptions are caught and handled appropriately, preventing the application from crashing.
Disclaimer: All resources provided are partly from the Internet. If there is any infringement of your copyright or other rights and interests, please explain the detailed reasons and provide proof of copyright or rights and interests and then send it to the email: [email protected] We will handle it for you as soon as possible.
Copyright© 2022 湘ICP备2022001581号-3