我試圖讓我的函數返回http get請求,但是,無論我做什麼,它似乎都迷失在?作用域中。我不幹新Node.js加載所以任何幫助,將不勝感激如何從Node.js http獲取請求中獲取數據
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);
}
我建議推把這個塊放入一個數組然後用join( '') 到底。如果有大量數據,這將避免問題 – Eric
如何獲取響應的HTTP響應代碼(200或404等)?是否有關於'on'(response.on),'data'和'end'的關鍵字的文檔?這些關鍵字是?這裏似乎沒有什麼:https://nodejs.org/api/http.html#http_class_http_serverresponse –
@TylerDurden'statusCode'是響應對象的一個屬性。我無法找到適用於'ServerResponse'對象的文檔,只是'get'和'request'方法文檔中的示例。 – Phoca