首页 > 代码库 > nodejs中处理回调函数的异常
nodejs中处理回调函数的异常
如果是使用nodejs+express3这个经典的组合,那么有一种很方面的处理回调函数异常的方法:
1. 安装模块:express-domain-middleware
2. 加入如下的代码:
app.use(require('express-domain-middleware')); app.use(function errorHandler(err, req, res, next) { logger.error('error on request %d %s %s: %j', process.domain.id, req.method, req.url, err); res.send(500, "there is an error in callback function"); if(err.domain) { //you should think about gracefully stopping & respawning your server //since an unhandled error might put your application into an unknown state } }); app.use(express.errorHandler({ dumpExceptions: true, showStack: true }));
nodejs中处理回调函数的异常
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。