在Express中的自定义错误处理程序中获取堆栈跟踪?

时间:2013-03-19 19:21:03

标签: node.js express

我在Express中使用自定义错误页面,如here所述。

但是当我这样做时,我只看到错误消息。我想获取默认Express错误处理程序(堆栈跟踪等)中显示的相同信息,以便我可以:

  1. 将其记录到控制台(如果我可以保留默认设置,我会很高兴。)
  2. 在错误页面上显示,但仅限于localhost。
  3. 我该怎么做?

2 个答案:

答案 0 :(得分:6)

这是来自@ generalhenry的答案的修改版本。您可以访问堆栈跟踪 在err.stack中,您可以在“500”视图中传递它并在其上执行一些奇特的CSS样式。

app.use(function(err, req, res, next) {
   if (err instanceof NotFound) {
       res.render('errors/404');
   } else {
       res.render('errors/500', {error: err, stack: err.stack});
   }
});

function NotFound() {
   this.name = "NotFound";
   Error.call(this, msg);
   Error.captureStackTrace(this, arguments.callee);
}

// below all route handlers
// If all fails, hit em with the 404
app.all('*', function(req, res){
   throw new NotFound;
});

答案 1 :(得分:0)

只需使用提供给中间件的错误

  // Handle 500
  app.use(function(error, req, res, next) {
     console.error(error);
     if (ISLOCALHOST()) {
       res.json(error, 500);
     } else {
       res.send('500: Internal Server Error', 500);
     }
  });