345

使用 Node.js 尝试获取以下网页的 html 内容时:

eternagame.wikia.com/wiki/EteRNA_Dictionary

我收到以下错误:

events.js:72
    throw er; // Unhandled 'error' event
          ^
Error: getaddrinfo ENOTFOUND
    at errnoException (dns.js:37:11)
    at Object.onanswer [as oncomplete] (dns.js:124:16)

我确实已经在 stackoverflow 上查找了这个错误,并意识到这是因为 node.js 无法从 DNS 中找到服务器(我认为)。但是,我不确定为什么会这样,因为我的代码在www.google.com.

这是我的代码(实际上是从一个非常相似的问题中复制和粘贴的,除了更改了主机):

var http = require("http");

var options = {
    host: 'eternagame.wikia.com/wiki/EteRNA_Dictionary'
};

http.get(options, function (http_res) {
    // initialize the container for our data
    var data = "";

    // this event fires many times, each time collecting another piece of the response
    http_res.on("data", function (chunk) {
        // append this chunk to our growing `data` var
        data += chunk;
    });

    // this event fires *one* time, after all the `data` events/chunks have been gathered
    http_res.on("end", function () {
        // you can use res.send instead of console.log to output via express
        console.log(data);
    });
});

这是我复制和粘贴的来源:如何在 Expressjs 中进行 Web 服务调用?

我没有在 node.js 中使用任何模块。

谢谢阅读。

4

18 回答 18

351

Node.js HTTP模块的文档中:http ://nodejs.org/api/http.html#http_http_request_options_callback

您可以调用,然后使用;http.get('http://eternagame.wikia.com/wiki/EteRNA_Dictionary', callback)解析 URL url.parse()或打电话http.get(options, callback),在options哪里

{
  host: 'eternagame.wikia.com',
  port: 8080,
  path: '/wiki/EteRNA_Dictionary'
}

更新

正如@EnchanterIO 的评论所述,该port字段也是一个单独的选项;并且该协议http://不应包含在该host字段中。https如果需要 SSL ,其他答案还建议使用模块。

于 2013-07-17T05:08:14.950 回答
270

另一个常见的错误来源

Error: getaddrinfo ENOTFOUND
    at errnoException (dns.js:37:11)
    at Object.onanswer [as oncomplete] (dns.js:124:16)

设置属性时正在编写协议(https,https,...)hostoptions

  // DON'T WRITE THE `http://`
  var options = { 
    host: 'http://yoururl.com',
    path: '/path/to/resource'
  }; 
于 2015-02-07T17:26:42.063 回答
21

在 HTTP 请求的选项中,将其切换为

var options = { host: 'eternagame.wikia.com', 
                path: '/wiki/EteRNA_Dictionary' };

我认为这会解决你的问题。

于 2013-07-17T05:07:52.783 回答
16

我的问题是我的 OS X (Mavericks) DNS 服务需要重新启动。在 Catalina 和 Big Sur 上,可以通过以下方式清除 DNS 缓存:

sudo dscacheutil -flushcache; sudo killall -HUP mDNSResponder

旧 macOS 版本请参见此处

于 2015-07-13T21:55:44.897 回答
12

如果需要使用 https,则使用 https 库

https = require('https');

// options
var options = {
    host: 'eternagame.wikia.com',
    path: '/wiki/EteRNA_Dictionary'
}

// get
https.get(options, callback);
于 2016-08-10T23:39:12.507 回答
11
  var http=require('http');
   http.get('http://eternagame.wikia.com/wiki/EteRNA_Dictionary', function(res){
        var str = '';
        console.log('Response is '+res.statusCode);

        res.on('data', function (chunk) {
               str += chunk;
         });

        res.on('end', function () {
             console.log(str);
        });

  });
于 2013-07-17T06:23:06.140 回答
7

我认为 http 在端口 80 上发出请求,即使我在选项对象中提到了完整的主机 url。当我在之前在端口 3000 上运行的端口 80 上运行具有 API 的服务器应用程序时,它可以工作。请注意,要在端口 80 上运行应用程序,您将需要 root 权限。

Error with the request: getaddrinfo EAI_AGAIN localhost:3000:80

这是一个完整的代码片段

var http=require('http');

var options = {
  protocol:'http:',  
  host: 'localhost',
  port:3000,
  path: '/iso/country/Japan',
  method:'GET'
};

var callback = function(response) {
  var str = '';

  //another chunk of data has been recieved, so append it to `str`
  response.on('data', function (chunk) {
    str += chunk;
  });

  //the whole response has been recieved, so we just print it out here
  response.on('end', function () {
    console.log(str);
  });
}

var request=http.request(options, callback);

request.on('error', function(err) {
        // handle errors with the request itself
        console.error('Error with the request:', err.message);        
});

request.end();
于 2017-05-30T07:13:17.857 回答
4

我用这个修复了这个错误

$ npm info express --verbose
# Error message: npm info retry will retry, error on last attempt: Error: getaddrinfo ENOTFOUND registry.npmjs.org registry.npmjs.org:443
$ nslookup registry.npmjs.org
Server:     8.8.8.8
Address:    8.8.8.8#53

Non-authoritative answer:
registry.npmjs.org  canonical name = a.sni.fastly.net.
a.sni.fastly.net    canonical name = prod.a.sni.global.fastlylb.net.
Name:   prod.a.sni.global.fastlylb.net
Address: 151.101.32.162
$ sudo vim /etc/hosts 
# Add "151.101.32.162 registry.npmjs.org` to hosts file
$ npm info express --verbose
# Works now!

原文来源:https ://github.com/npm/npm/issues/6686

于 2018-01-05T09:49:34.117 回答
4

请注意,如果您引用的域出现故障(例如,不再存在),也会出现此问题。

于 2015-08-11T18:11:21.137 回答
1

我使用请求模块进行了尝试,并且能够很容易地打印出该页面的正文。不幸的是,以我拥有的技能,除此之外我无能为力。

于 2013-07-17T05:07:50.280 回答
1

从开发环境转到生产环境时出现此错误。我痴迷于放置https://所有链接。这不是必需的,因此它可能是某些人的解决方案。

于 2015-06-12T10:21:46.360 回答
1

我遇到了同样的错误,并在下面的链接中使用以获得帮助:

https://nodejs.org/api/http.html#http_http_request_options_callback

我的代码中没有:

req.end();

(NodeJs V:5.4.0) 一旦在上面添加req.end();,我就能够摆脱错误并且对我来说工作得很好。

于 2016-01-10T05:45:58.473 回答
1

在我的情况下,错误是因为使用了不正确的主机值

  var options = {
    host: 'graph.facebook.com/v2.12/',
    path: path
  }

应该

  var options = {
    host: 'graph.facebook.com',
    path: path
  }

因此 .com 或 .net 等之后的任何内容都应移至路径参数值

于 2020-12-27T16:27:38.263 回答
1

尝试使用服务器 IP 地址而不是主机名。这对我有用。希望它也对你有用。

于 2019-01-06T08:22:53.170 回答
0

如果您仍然面临代理设置的结帐,对我来说,这是缺少代理设置并且无法发出请求,因为直接 http/https 被阻止。因此,我在发出请求时从我的组织配置了代理。

npm install https-proxy-agent 
or 
npm install http-proxy-agent

const httpsProxyAgent = require('https-proxy-agent');
const agent = new httpsProxyAgent("http://yourorganzation.proxy.url:8080");
const options = {
  hostname: 'encrypted.google.com',
  port: 443,
  path: '/',
  method: 'GET',
  agent: agent
};
于 2017-06-09T09:19:58.233 回答
0

我摆脱了 http 和额外的斜杠(/)。我刚刚使用了这个 'node-test.herokuapp.com' 并且它起作用了。

于 2016-07-22T10:29:09.380 回答
0

我通过从连接密码中删除不需要的字符解决了这个问题。例如,我有这些字符: <##% 并且它导致了问题(很可能哈希标签是问题的根本原因)。

于 2017-09-01T06:49:56.600 回答
0

我的问题是我们正在解析 url 并为 http.request() 生成 http_options;

我使用的是 request_url.host,它已经有带有域名的端口号,所以必须使用 request_url.hostname。

var request_url = new URL('http://example.org:4444/path');
var http_options = {};

http_options['hostname'] = request_url.hostname;//We were using request_url.host which includes port number
http_options['port'] = request_url.port;
http_options['path'] = request_url.pathname;
http_options['method'] = 'POST';
http_options['timeout'] = 3000;
http_options['rejectUnauthorized'] = false;
于 2019-08-08T07:04:58.903 回答