如何在nodeJS中使用async处理错误



我正在清理我的代码,并从回调地狱转移到async/await和try/catch,但我仍然想让我的代码变干,因为我有太多的路由,并且在每个请求中执行相同的try-catch。处理这个问题的最佳方法是什么?

这是我在一个GET路由中的示例代码。

router.get('/customer', async (req, res, next) => {
try {
const customer = await Customer.find({}).populate('buisness').exec();
return res.status(200).json({
result: customer
});
} catch (e) {
return next(e);
}
});

现在,若我在每条路线上重复同样的事情,它并没有遵循DRY代码。什么可能是最好的?

const errorHandlerMiddleware = async (req, res, next) =>  {
try {
await next();
} catch (err) {
// handle the error here
}
};
router.use(errorHandlerMiddleware);
router.get('/customer', async (req, res, next) => {
const customer = await Customer.find({}).populate('buisness').exec();
return res.status(200).json({
result: customer
});
});

在所有路由之前使用errorHandlerMiddleware,此中间件将捕获路由中抛出的每个异常。现在,每次路由中出现异常时,它都会被中间件捕获

相关内容

  • 没有找到相关文章

最新更新