Node.js を使用して、次の Web ページの 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 でモジュールを使用していません。
読んでくれてありがとう。