错误:连接ETIMEDOUT,节点js如何在localhost API之间进行通信

时间:2017-09-11 16:31:35

标签: javascript node.js http proxy reverse-proxy

我有一些正在侦听端口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。

0 个答案:

没有答案