Quantcast
Channel: CNode:Node.js专业中文社区
Viewing all articles
Browse latest Browse all 14821

小白求指教

$
0
0

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里面又是有内容了的


Viewing all articles
Browse latest Browse all 14821

Trending Articles