如何在 Express 和 NodeJS 中针对 Mongoose 错误进行错误处理。
Posted
技术标签:
【中文标题】如何在 Express 和 NodeJS 中针对 Mongoose 错误进行错误处理。【英文标题】:How to do error handling in Express and NodeJS for Mongoose Error. 【发布时间】:2016-08-18 11:53:55 【问题描述】:我有一个 NodeJS 应用程序,Express 作为我的 Web 服务器,Mongoose 作为我在 MongoDB 上的抽象层。现在一个简单的 Express 路由是这样编写的。
module.exports.getProfile = function(req, res, next)
Users.findOne(
'_id': req.user._id
).exec(function(err, profile)
if (err)
res.sendStatus(500);
else if (profile)
res.status(200).send(JSON.stringify(
'profile': profile
));
else
res.status(400).send(JSON.stringify(
'message': "Profile Not found"
));
);
;
现在我的应用程序中至少有 100 个这样的函数,而不是每次都编写 res.sendStatus(500),我想创建一个这样的函数。
var sendError = function(err, res, next)
if (err)
res.status(500).send(JSON.stringify(
'message': "Internal server error. Couldn't connect to database. Please report this issue and try again"
));
next();
;
对于每个数据库调用。 if(err) sendError(err, res, next);不起作用,不知何故我觉得它不对。那么在这种情况下,最佳做法是什么?
【问题讨论】:
【参考方案1】:您可以为此目的使用Express.errorHandler
。它在Express documentation 中描述。
【讨论】:
Express.errorHandler 是一个快速函数,因为您在上面提供的文档页面的链接中没有给出它。 这是关于 Express 中错误处理工作流程的文档。具有 4 个参数的函数调用错误处理程序,如果您在路由中调用 next() 并将err
传递给它,则将为该函数提供执行流程。
好吧,你的意思是说如果我给 next(err);在上述函数中,而不是 res.sendStatus(500);并写一个函数app.use(function(err, req, res, next) res.status(500).send('Something broke!');)
会起作用吗?
是的。此外,您必须确保在添加路由功能后添加错误处理程序,如下所示:pastebin以上是关于如何在 Express 和 NodeJS 中针对 Mongoose 错误进行错误处理。的主要内容,如果未能解决你的问题,请参考以下文章
如何使用 nodejs / express 将数据存储在 mongodb 中?
如何使用 NodeJS 和 Express 渲染上传的照片?
如何使用 NodeJS 和 Express 渲染上传的照片?
nodejs / express:如何使用数据发布到外部表单?