recherche

Maison  >  Questions et réponses  >  le corps du texte

node.js - express 路由一直报错

天蓬老师天蓬老师2783 Il y a quelques jours416

répondre à tous(3)je répondrai

  • 天蓬老师

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

    1. 确定你的common.js引入路径是否正确

    2. 确定你的requestCombine(req,res,next,x)方法里是否报错

    3. 个人觉得是你的路径问题

    répondre
    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哈。

    répondre
    0
  • 怪我咯

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

    一看就是语法错误!

    répondre
    0
  • Annulerrépondre