1. ホーム
  2. Web プログラミング
  3. ジャバスクリプト

[解決済み】Node.js getaddrinfo ENOTFOUND

2021-12-28 22:22:11

質問

を取得したい。 eternagame.wikia.com htmlコンテンツは、node.jsを使用しています、コードは次のとおりです。

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);
    });
});

以下のようなエラーが発生します。

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)

では完全に動作します。 www.google.com .

以下は、私がコピー&ペーストしたソースです。 ExpressjsでWebサービス呼び出しを行うには?

どのように解決するのですか?

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が必要な場合に使用します。