Error: No default engine was specified and no extension was provided

前端 未结 14 2553
别跟我提以往
别跟我提以往 2020-11-29 18:13

I am working through setting up a http server using node.js and engine. However, I keep running into issues that I have little information on how to resolve I would apprecia

14条回答
  •  遥遥无期
    2020-11-29 18:40

    instead of

    app.get('/', (req, res) => res.render('Hellooooo'))
    

    use

    app.get('/', (req, res) => res.send('Hellooooo'))
    

提交回复
热议问题