var http=require(‘http’);
var html="";
var req=http.get(‘http://weibo.com/u/3209782551?refer_flag=1001030101_&is_hot=1’,function(res){
res.on(‘data’,function(chunk){
html+=chunk;
});
res.on(‘end’,function(){
console.log(html);
})
});
html里面一直是空的呢?
var req=http.get(‘http://www.baidu.com’,function(res){
res.on(‘data’,function(chunk){
html+=chunk;
});
res.on(‘end’,function(){
console.log(html);
})
});
当这样的时候,html里面又是有内容了的
↧
小白求指教
↧