मैं अपना काम करने की कोशिश कर रहा हूँ http अनुरोध प्राप्त करने के लिए, हालांकि, जो कुछ भी मैं इसे खो दिया है लगता है? गुंजाइश? मैं Node.js के लिए नया छोड़ रहा हूँ, इसलिए किसी भी मदद की सराहना की जाएगी
function getData(){
var http = require('http');
var str = '';
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) {
response.on('data', function (chunk) {
str += chunk;
});
response.on('end', function () {
console.log(str);
});
//return str;
}
var req = http.request(options, callback).end();
// These just return undefined and empty
console.log(req.data);
console.log(str);
}