我已经像这样在 Node 服务器中创建了一个 restfull 服务
express().use('/getdata', express()
.get('/', function (req, res) {
//....
})
.put('/', function (req, res) {
//....
})
);
当我从前端/浏览器对http://localhost/getdata执行 GET 或 PUT 时,它工作正常。
那么基本上如何在节点服务器中做同样的事情,使用 HTTP 对象在节点服务器中发出获取请求。url 路径将如何?