nodejs-http笔记

创建于2016 应该是当时看到别人的文章之后的笔记,如果作者看到请联系我

http事务解剖

创建服务

var http = require('http');
var server = http.createServer(function(request, response) {// magic happens here!});

还可以有另一种写法

var server = http.createServer();
server.on('request', function(request, response) {// the same kind of magic happens here!});

在一般的案例中,我们通过端口号监听服务

Method,url和Headers

var method = request.method;var url = request.url;

method 是http的提交方式,url是除去ip和端口的全链接

var headers = request.headers;var userAgent = headers['user-agent'];

headers 获取浏览器传递过来的所有header内容

RequestBody

var body = [];
request.on('data', function(chunk) {
  body.push(chunk);}).on('end', function() {
  body = Buffer.concat(body).toString();// at this point, `body` has the entire request body stored in it as a string});

处理错误请求

request.on('error', function(err) {// This prints the error message and stack trace to `stderr`.
  console.error(err.stack);});

整合上述

var http = require('http');

http.createServer(function(request, response) {var headers = request.headers;var method = request.method;var url = request.url;var body = [];
  request.on('error', function(err) {
    console.error(err);}).on('data', function(chunk) {
    body.push(chunk);}).on('end', function() {
    body = Buffer.concat(body).toString();// At this point, we have the headers, method, url and body, and can now// do whatever we need to in order to respond to this request.});}).listen(8080); // Activates this server, listening on port 8080.

现在我们还缺少对浏览器的反馈

http status code

response.statusCode = 404; // Tell the client that the resource wasn't found.

404错误 找不到页面,其他code也这么使用

设置回应的标题头

response.setHeader('Content-Type', 'application/json');
response.setHeader('X-Powered-By', 'bacon');

显示的发送头数据

response.writeHead(200, {'Content-Type': 'application/json','X-Powered-By': 'bacon'});

response body

response.write('<html>');
response.write('<body>');
response.write('<h1>Hello, World!</h1>');
response.write('</body>');
response.write('</html>');
response.end();

也可以这么发送

response.end('<html><body><h1>Hello, World!</h1></body></html>');

另一种错误处理的便捷方式

response.on('error',function(err){//...})

整合在一起

ar http = require('http');

http.createServer(function(request, response) {var headers = request.headers;var method = request.method;var url = request.url;var body = [];
  request.on('error', function(err) {
    console.error(err);}).on('data', function(chunk) {
    body.push(chunk);}).on('end', function() {
    body = Buffer.concat(body).toString();// BEGINNING OF NEW STUFF

    response.on('error', function(err) {
      console.error(err);});

    response.statusCode = 200;
    response.setHeader('Content-Type', 'application/json');// Note: the 2 lines above could be replaced with this next one:// response.writeHead(200, {'Content-Type': 'application/json'})var responseBody = {
      headers: headers,
      method: method,
      url: url,
      body: body
    };

    response.write(JSON.stringify(responseBody));
    response.end();// Note: the 2 lines above could be replaced with this next one:// response.end(JSON.stringify(responseBody))// END OF NEW STUFF});}).listen(8080);

简单的回应服务

var http = require('http');

http.createServer(function(request, response) {var body = [];
  request.on('data', function(chunk) {
    body.push(chunk);}).on('end', function() {
    body = Buffer.concat(body).toString();
    response.end(body);});}).listen(8080);

现在假设一个情况:

  • get请求
  • /echo 连接
  • 其他情况都返回404
var http = require('http');

http.createServer(function(request, response) {if (request.method === 'GET' && request.url === '/echo') {var body = [];
    request.on('data', function(chunk) {
      body.push(chunk);}).on('end', function() {
      body = Buffer.concat(body).toString();
      response.end(body);})} else {
    response.statusCode = 404;
    response.end();}}).listen(8080);

不要忘记,request是readStream response是writeStream,我们可以使用pipe简化上面的代码

var http = require('http');
http.createServer(function(request, response) {if (request.method === 'GET' && request.url === '/echo') {
    request.pipe(response);} else {
    response.statusCode = 404;
    response.end();}}).listen(8080);

增加处理错误请求的方法

var http = require('http');

http.createServer(function(request, response) {
  request.on('error', function(err) {
    console.error(err);
    response.statusCode = 400;
    response.end();});
  response.on('error', function(err) {
    console.error(err);});if (request.method === 'GET' && request.url === '/echo') {
    request.pipe(response);} else {
    response.statusCode = 404;
    response.end();}}).listen(8080);
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 205,236评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,867评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,715评论 0 340
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,899评论 1 278
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,895评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,733评论 1 283
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,085评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,722评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,025评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,696评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,816评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,447评论 4 322
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,057评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,009评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,254评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,204评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,561评论 2 343

推荐阅读更多精彩内容

  • Spring Cloud为开发人员提供了快速构建分布式系统中一些常见模式的工具(例如配置管理,服务发现,断路器,智...
    卡卡罗2017阅读 134,598评论 18 139
  • 使用 HTTP 服务器或客户端功能必须调用require('http')。 Node 里的 HTTP 接口支持协议...
    保川阅读 1,373评论 0 1
  • https://nodejs.org/api/documentation.html 工具模块 Assert 测试 ...
    KeKeMars阅读 6,305评论 0 6
  • 组织:中国互动出版网(http://www.china-pub.com/) RFC文档中文翻译计划(http://...
    Palomar阅读 1,563评论 0 6
  • 一、概念(载录于:http://www.cnblogs.com/EricaMIN1987_IT/p/3837436...
    yuantao123434阅读 8,328评论 6 152