美文网首页Nodejs
express 4.x 错误处理不生效问题

express 4.x 错误处理不生效问题

作者: penggy | 来源:发表于2016-08-08 15:32 被阅读10次
    app.use(function(err,req,res,next){
      console.log('[' + new Date() + '] ' + req.url);
      console.log(err.stack);
    });
    

    这段代码需要放到 所有系统路由后面 , 就生效了

    相关文章

      网友评论

        本文标题:express 4.x 错误处理不生效问题

        本文链接:https://www.haomeiwen.com/subject/zedrsttx.html