搜尋

首頁  >  問答  >  主體

node.js - express 路由一直报错

天蓬老师天蓬老师2785 天前421

全部回覆(3)我來回復

  • 天蓬老师

    天蓬老师2017-04-17 15:06:13

    1. 確定你的common.js引入路徑是否正確

    2. 確定你的requestCombine(req,res,next,x)方法裡是否報錯

    3. 個人覺得是你的路徑問題

    回覆
    0
  • PHPz

    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哈。

    回覆
    0
  • 怪我咯

    怪我咯2017-04-17 15:06:13

    一看就是文法錯誤!

    回覆
    0
  • 取消回覆