首页 > 代码库 > Node.js http模块
Node.js http模块
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();
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。