码迷,mamicode.com
首页 > Web开发 > 详细

Node.js http模块

时间:2014-08-21 14:39:34      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   使用   io   strong   ar   

http模块提供了两个常用的功能, 创建一个http server和做http请求.

创建一个http server

var http = require(‘http‘);

var server = http.createServer();

server.on(‘request‘, function(req, res){
    res.writeHead(‘Content-Type‘, ‘text/html‘);
    res.end(‘hello world‘);
});

server.listen(8990);

 

http request

var http = require(‘http‘);

var req = http.request(‘http://baidu.com‘, function(res){
    res.on(‘data‘, function(data){
        console.log(data);
    })
});

req.end();

 

还可以写成这样, 使用response事件, 上面的写法更方便, 但其实上面的写法也使用了response事件.

var http = require(‘http‘);

var req = http.request(‘http://baidu.com‘);

req.on(‘response‘, function(res){
    res.on(‘data‘, function(data){
        console.log(data);
    })
})

req.end();

 

Node.js http模块,布布扣,bubuko.com

Node.js http模块

标签:style   blog   http   color   使用   io   strong   ar   

原文地址:http://www.cnblogs.com/tguitar/p/3926942.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!