node.js は初めてで、http リクエストを作成しようとしています。random.org を呼び出そうとするチュートリアルに従いました。これは私のapp.jsファイルです:
var http = require('http');
//The url we want is: 'www.random.org/integers/?num=1&min=1&max=10&col=1&base=10&format=plain&rnd=new'
var options = {
host: 'www.random.org',
path: '/integers/?num=1&min=1&max=10&col=1&base=10&format=plain&rnd=new'
};
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);
});
response.on('error', function () {
console.log("err");
});
}
http.request(options, callback).end();
とにかく、このファイルを使用して実行するとき
node app.js
コンソールに次のエラーが表示されます。
C:\Program Files\nodejs>node app.js
events.js:72
throw er; // Unhandled 'error' event
^
Error: connect ETIMEDOUT
at errnoException (net.js:901:11)
at Object.afterConnect [as oncomplete] (net.js:892:19)
2 つの問題:
1. タイムアウト エラーが発生するのはなぜですか (サイトは動作します - チェックしました)
。
どんな助けでも大歓迎です!
ありがとう