首页 > 代码库 > nodejs做中间层,向后端取数据

nodejs做中间层,向后端取数据

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);       })   })

  

nodejs做中间层,向后端取数据