app.get('/a',function(req,res,next){
res.end('hahah');
next(new Error('错误啦'));
});
app.use('/a',function(err,req,res,next){
console.log('路由错误'+err);
})
//all error中间件
app.use(function(err, req, res, next) {
console.log("Error happens", err.stack);
});
//错误传递,/a的错误处理首先匹配/a那个错误中间件,如果不用next就不会传递到全局错误处理中间件,如果在/a
//错误处理中间件里调用next(err) 那么全局错误中间件也会被执行
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。