嗨我收到网页内容的问题。请参阅下面的代码
var http = require('http');
var html = '';
var options = {
host: 'dev.gunship.io',
path: '/node.html'
};
callback = function(response) {
response.on('data', function(chunk) {
html += chunk;
});
response.on('end', function() {
//console.log(html);
});
};
http.request(options, callback).end();
console.log(html);
为什么我的控制台没有记录任何内容..? 感谢您的帮助