var http = require('http');
var options = {
method: 'GET',
host: 'www.google.com',
port: 80,
path: '/index.html'
};
http.request(
options,
function(err, resBody){
console.log("hey");
console.log(resBody);
if (err) {
console.log("YOYO");
return;
}
}
);
由于某种原因,这只是超时并且不会将任何内容记录到控制台。
我知道我可以,require('request')
但我需要使用http
与我正在使用的插件兼容。
另外,我的版本背景:Node is v0.8.2