寫在前面
創(chuàng)新互聯(lián)公司專注為客戶提供全方位的互聯(lián)網(wǎng)綜合服務(wù),包含不限于網(wǎng)站設(shè)計、網(wǎng)站制作、安福網(wǎng)絡(luò)推廣、微信小程序開發(fā)、安福網(wǎng)絡(luò)營銷、安福企業(yè)策劃、安福品牌公關(guān)、搜索引擎seo、人物專訪、企業(yè)宣傳片、企業(yè)代運營等,從售前售中售后,我們都將竭誠為您服務(wù),您的肯定,是我們最大的嘉獎;創(chuàng)新互聯(lián)公司為所有大學(xué)生創(chuàng)業(yè)者提供安福建站搭建服務(wù),24小時服務(wù)熱線:18980820575,官方網(wǎng)址:www.cdcxhl.com
body-parser
是非常常用的一個express
中間件,作用是對post請求的請求體進行解析。使用非常簡單,以下兩行代碼已經(jīng)覆蓋了大部分的使用場景。
app.use(bodyParser.json()); app.use(bodyParser.urlencoded({ extended: false }));
本文從簡單的例子出發(fā),探究body-parser
的內(nèi)部實現(xiàn)。至于body-parser
如何使用,感興趣的同學(xué)可以參考官方文檔。
入門基礎(chǔ)
在正式講解前,我們先來看一個POST請求的報文,如下所示。
POST /test HTTP/1.1 Host: 127.0.0.1:3000 Content-Type: text/plain; charset=utf8 Content-Encoding: gzip chyingp
其中需要我們注意的有Content-Type
、Content-Encoding
以及報文主體:
body-parser主要做了什么
body-parser
實現(xiàn)的要點如下:
1.處理不同類型的請求體:比如text、json、urlencoded等,對應(yīng)的報文主體的格式不同。
2.處理不同的編碼:比如utf8、gbk等。
3.處理不同的壓縮類型:比如gzip、deflare等。
4.其他邊界、異常的處理。
一、處理不同類型請求體
為了方便讀者測試,以下例子均包含服務(wù)端、客戶端代碼,完整代碼可在筆者github上找到。
解析text/plain
客戶端請求的代碼如下,采用默認(rèn)編碼,不對請求體進行壓縮。請求體類型為text/plain
。
var http = require('http'); var options = { hostname: '127.0.0.1', port: '3000', path: '/test', method: 'POST', headers: { 'Content-Type': 'text/plain', 'Content-Encoding': 'identity' } }; var client = http.request(options, (res) => { res.pipe(process.stdout); }); client.end('chyingp');
服務(wù)端代碼如下。text/plain
類型處理比較簡單,就是buffer的拼接。
var http = require('http'); var parsePostBody = function (req, done) { var arr = []; var chunks; req.on('data', buff => { arr.push(buff); }); req.on('end', () => { chunks = Buffer.concat(arr); done(chunks); }); }; var server = http.createServer(function (req, res) { parsePostBody(req, (chunks) => { var body = chunks.toString(); res.end(`Your nick is ${body}`) }); }); server.listen(3000);
解析application/json
客戶端代碼如下,把Content-Type
換成application/json
。
var http = require('http'); var querystring = require('querystring'); var options = { hostname: '127.0.0.1', port: '3000', path: '/test', method: 'POST', headers: { 'Content-Type': 'application/json', 'Content-Encoding': 'identity' } }; var jsonBody = { nick: 'chyingp' }; var client = http.request(options, (res) => { res.pipe(process.stdout); }); client.end( JSON.stringify(jsonBody) );
服務(wù)端代碼如下,相比text/plain
,只是多了個JSON.parse()
的過程。
var http = require('http'); var parsePostBody = function (req, done) { var length = req.headers['content-length'] - 0; var arr = []; var chunks; req.on('data', buff => { arr.push(buff); }); req.on('end', () => { chunks = Buffer.concat(arr); done(chunks); }); }; var server = http.createServer(function (req, res) { parsePostBody(req, (chunks) => { var json = JSON.parse( chunks.toString() ); // 關(guān)鍵代碼 res.end(`Your nick is ${json.nick}`) }); }); server.listen(3000);
解析application/x-www-form-urlencoded
客戶端代碼如下,這里通過querystring
對請求體進行格式化,得到類似nick=chyingp
的字符串。
var http = require('http'); var querystring = require('querystring'); var options = { hostname: '127.0.0.1', port: '3000', path: '/test', method: 'POST', headers: { 'Content-Type': 'form/x-www-form-urlencoded', 'Content-Encoding': 'identity' } }; var postBody = { nick: 'chyingp' }; var client = http.request(options, (res) => { res.pipe(process.stdout); }); client.end( querystring.stringify(postBody) );
服務(wù)端代碼如下,同樣跟text/plain
的解析差不多,就多了個querystring.parse()
的調(diào)用。
var http = require('http'); var querystring = require('querystring'); var parsePostBody = function (req, done) { var length = req.headers['content-length'] - 0; var arr = []; var chunks; req.on('data', buff => { arr.push(buff); }); req.on('end', () => { chunks = Buffer.concat(arr); done(chunks); }); }; var server = http.createServer(function (req, res) { parsePostBody(req, (chunks) => { var body = querystring.parse( chunks.toString() ); // 關(guān)鍵代碼 res.end(`Your nick is ${body.nick}`) }); }); server.listen(3000);
二、處理不同編碼
很多時候,來自客戶端的請求,采用的不一定是默認(rèn)的utf8
編碼,這個時候,就需要對請求體進行解碼處理。
客戶端請求如下,有兩個要點。
1.編碼聲明:在Content-Type最后加上;charset=gbk
2.請求體編碼:這里借助了iconv-lite,對請求體進行編碼iconv.encode('程序猿小卡', encoding)
var http = require('http'); var iconv = require('iconv-lite'); var encoding = 'gbk'; // 請求編碼 var options = { hostname: '127.0.0.1', port: '3000', path: '/test', method: 'POST', headers: { 'Content-Type': 'text/plain; charset=' + encoding, 'Content-Encoding': 'identity', } }; // 備注:nodejs本身不支持gbk編碼,所以請求發(fā)送前,需要先進行編碼 var buff = iconv.encode('程序猿小卡', encoding); var client = http.request(options, (res) => { res.pipe(process.stdout); }); client.end(buff, encoding);
服務(wù)端代碼如下,這里多了兩個步驟:編碼判斷、解碼操作。首先通過Content-Type
獲取編碼類型gbk
,然后通過iconv-lite
進行反向解碼操作。
var http = require('http'); var contentType = require('content-type'); var iconv = require('iconv-lite'); var parsePostBody = function (req, done) { var obj = contentType.parse(req.headers['content-type']); var charset = obj.parameters.charset; // 編碼判斷:這里獲取到的值是 'gbk' var arr = []; var chunks; req.on('data', buff => { arr.push(buff); }); req.on('end', () => { chunks = Buffer.concat(arr); var body = iconv.decode(chunks, charset); // 解碼操作 done(body); }); }; var server = http.createServer(function (req, res) { parsePostBody(req, (body) => { res.end(`Your nick is ${body}`) }); }); server.listen(3000);
三、處理不同壓縮類型
這里舉個gzip
壓縮的例子??蛻舳舜a如下,要點如下:
1.壓縮類型聲明:Content-Encoding賦值為gzip。
2.請求體壓縮:通過zlib模塊對請求體進行g(shù)zip壓縮。
var http = require('http'); var zlib = require('zlib'); var options = { hostname: '127.0.0.1', port: '3000', path: '/test', method: 'POST', headers: { 'Content-Type': 'text/plain', 'Content-Encoding': 'gzip' } }; var client = http.request(options, (res) => { res.pipe(process.stdout); }); // 注意:將 Content-Encoding 設(shè)置為 gzip 的同時,發(fā)送給服務(wù)端的數(shù)據(jù)也應(yīng)該先進行g(shù)zip var buff = zlib.gzipSync('chyingp'); client.end(buff);
服務(wù)端代碼如下,這里通過zlib
模塊,對請求體進行了解壓縮操作(guzip)。
var http = require('http'); var zlib = require('zlib'); var parsePostBody = function (req, done) { var length = req.headers['content-length'] - 0; var contentEncoding = req.headers['content-encoding']; var stream = req; // 關(guān)鍵代碼如下 if(contentEncoding === 'gzip') { stream = zlib.createGunzip(); req.pipe(stream); } var arr = []; var chunks; stream.on('data', buff => { arr.push(buff); }); stream.on('end', () => { chunks = Buffer.concat(arr); done(chunks); }); stream.on('error', error => console.error(error.message)); }; var server = http.createServer(function (req, res) { parsePostBody(req, (chunks) => { var body = chunks.toString(); res.end(`Your nick is ${body}`) }); }); server.listen(3000);
寫在后面
body-parser
的核心實現(xiàn)并不復(fù)雜,翻看源碼后你會發(fā)現(xiàn),更多的代碼是在處理異常跟邊界。
另外,對于POST請求,還有一個非常常見的Content-Type
是multipart/form-data
,這個的處理相對復(fù)雜些,body-parser
不打算對其進行支持。篇幅有限,后續(xù)章節(jié)再繼續(xù)展開。
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。