nodejs做中间层,向后端取数据
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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做中间层,向后端取数据的主要内容,如果未能解决你的问题,请参考以下文章