天蓬老师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哈。