http get 요청을 반환하는 내 함수를 얻으려고 노력하고 있지만 무엇을하든? 범위에서 잃어버린 것처럼 보입니다. 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);
}