我是靠谱客的博主 小巧小蘑菇,最近开发中收集的这篇文章主要介绍nodejs做中间层,向后端取数据,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

var
http=require('http');
http.get('http://baidu/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);
})
})

  


router.get('/', function(req, res, next) {
var post_data={username:'yuzhou001',password:'123456'};//这是需要提交的数据
var content=qs.stringify(post_data);
var options = {
host: 'www.badiu.cn',
port: 80,
path: '/api/User/Login',
method: 'POST',
headers:{
'Content-Type':'application/x-www-form-urlencoded',
'Content-Length':content.length
}
};
var req = http.request(options, function(res) {
/*
console.log("statusCode: ", res.statusCode);
console.log("headers: ", res.headers);*/
var _data='';
res.on('data', function(chunk){
_data += chunk;
});
res.on('end', function(){
console.log("n--->>nresult:",_data);
pages(_data);
});
});
req.write(content);
req.end();
function pages(datas) {
res.send(datas);//返回页面数据,闭包
}

 

 

转载于:https://www.cnblogs.com/yexiangwang/p/5937221.html

最后

以上就是小巧小蘑菇为你收集整理的nodejs做中间层,向后端取数据的全部内容,希望文章能够帮你解决nodejs做中间层,向后端取数据所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(42)

评论列表共有 0 条评论

立即
投稿
返回
顶部