在node.js中,res.send什么都不返回

时间:2017-03-19 17:10:59

标签: node.js express

我使用版本 6.10.0 Node.js 的最新版本, npm 版本 3.10.10 < / strong>使用快速框架,只需编写一个示例api即可发送文本&#34; Hello World&#34;。我在邮递员中测试了它并没有返回任何数据。当我使用console.log时,它会在命令提示符下显示数据。

代码:

app.get('/api/hello',function(req,res){
    console.log("hello world") 
    res.send("hello world")
 res.status(200).send("hello world")  // it is also not working
})

请帮我解决这个问题。感谢。

0 个答案:

没有答案