Maison > Questions et réponses > le corps du texte
天蓬老师2017-04-17 15:06:13
确定你的common.js
引入路径是否正确
确定你的requestCombine(req,res,next,x)
方法里是否报错
个人觉得是你的路径问题
PHPz2017-04-17 15:06:13
// catch 404 and forward to error handler
app.use(function(req, res, next) {
let err = new Error('Not Found');
err.status = 404;
console.error('WRONG:', '404 Not Found');
next(err);
});
你这个中间件一加,等于所有的请求都会new一个404的error,然后抛出来了,你要加个限制条件再抛error哈。