我有一些正在侦听端口8080的后端服务。我在节点js中有另一个API,它正在侦听localhost上的端口3000。
如何从节点服务器与后端API进行通信?
这是我的节点js代码:
router.post('/', function(req, res, next) {
console.log('got validate request');
var options = {
host:'localhost',
port:8080,
path:'/***/getservice',
method:'GET'
}
http.request(options, function (response) {
console.log('response:', response); // Print the error if one occurred
res.json(response);
res.end();
});
});
以上代码导致错误:连接ETIMEDOUT。