var http=require(‘http‘);
http.get(‘http://dks.dacelue.com.cn/dksapi/weiboLive/GetSquareLive?pagecount=1&pageindex=1&source=0‘,function (response) {
var rawContent=‘‘;
response.on(‘data‘,function (chunk) {
rawContent+=chunk.toString();
})
response.on(‘end‘,function () {
res.send(rawContent);
})
})
原文:http://www.cnblogs.com/yexiangwang/p/5937221.html