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做中间层,向后端取数据的主要内容,如果未能解决你的问题,请参考以下文章

一个简单粗暴的前后端分离方案

node 中间层怎样做的请求合并转发

后端一次性返回10w条数据,该如何渲染

如何使用nodejs做爬虫程序

如何使用nodejs做爬虫程序

如何使用nodejs做爬虫程序