我使用版本 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
})
请帮我解决这个问题。感谢。