错误:连接ETIMEDOUT 156.34.15.309:443

时间:2019-08-16 09:44:59

标签: javascript node.js http request

我有以下请求调用,但运行时出现以下错误,

{ Error: connect ETIMEDOUT 130.14.16.209:443
at TCPConnectWrap.afterConnect [as oncomplete] (net.js:1161:14)
errno: 'ETIMEDOUT',
code: 'ETIMEDOUT',
 syscall: 'connect',
 address: '156.34.15.309',
 port: 443 }

我的请求,

 function test(input) {
var element = input[0].intervention;
    request.post('https://meshb.nlm.nih.gov/api/MOD',
    {json:{"input":element}},
    function (error, response, body) {
        console.log(error);
        if (!error && response.statusCode == 200) {
            prepareData(200, input, body.body, element);
        } else {
            // console.log(error+'[[['+element);
            prepareData(204, input, '', element);
        }
    }
   );
  };

我不确定该错误,有人可以指导我修复该错误。谢谢。

0 个答案:

没有答案