JSON

nodejs http.get调用restful api json输出到浏览器回调写法

字号+ 作者:H5之家 来源:H5之家 2015-10-07 15:16 我要评论( )

var http = require('http');http.createServer(function(req,res) {http.get(?format=js, send(res)).on('error', function(e) {console.log(Got error: + e.message);});}).listen(8123,'127.0.0.1');console.log('Server running at :8123');function sen

var http = require('http'); http.createServer(function(req,res) { http.get("?format=js", send(res)) .on('error', function(e) { console.log("Got error: " + e.message); }); }).listen(8123,'127.0.0.1'); console.log('Server running at :8123'); function send(res){ return function(rawRes) { var size = 0; var chunks = []; rawRes.on('data', function (chunk) { size += chunk.length; chunks.push(chunk); }); rawRes.on('end', function () { var data = Buffer.concat(chunks, size); console.log(data.toString()) res.writeHead(200, {'Content-type': 'text/plain'}); res.end(data + '\n'); }); } };

 

1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。

相关文章
  • jQuery+json实现的简易Ajax调用实例

    jQuery+json实现的简易Ajax调用实例

    2016-01-20 18:01

  • Python调用API接口的几种方式

    Python调用API接口的几种方式

    2015-11-18 13:13

  • 浅谈Nodejs观察者模式

    浅谈Nodejs观察者模式

    2015-11-17 09:22

  • JSP+jquery使用ajax方式调用json的实现方法

    JSP+jquery使用ajax方式调用json的实现方法

    2015-11-05 18:01

网友点评