上一篇文章中主要演示了HTML5表單發送HTTP請求時的數據處理。這篇文章將把關注點放在後端express應用上。接下來將解析部分express源碼來了解expres是如何處理請求的。html
代碼倉庫:https://github.com/jczzq/cool...node
const express = require('express'); const app = express(); // app.use([path,] function [, function...]) app.use('/user/:id', (req, res, next) => { return res.sendStatus(200); });
這是咱們的express應用代碼,app.use
將掛載一箇中間件,處理匹配/user/XXX
路徑的全部請求,無論是POST或是GET請求。git
這個中間件的處理函數是必傳參數,處理函數有三個可用參數:github
Nodeweb
以前說過的消息起始行三部分:express
三個屬性都是繼承自Node http API,另外express根據req.url補充完善了多個經常使用的屬性,好比json
express中查看原始請求頭能夠經過req.rawHeaders
或req.headers
獲取segmentfault
curl http://localhost:3000/user/233
後端
輸出req.rawHeadersapi
輸出req.headers
根據express文檔描述req.body是惟一用於接收請求體的屬性。咱們發送請求並返回相關參數,如今咱們分別發送application/x-www-form-urlencoded
,multipart/form-data
,text/plain
三個類型的請求體參數看看什麼狀況。
app.use('/user/:id', (req, res, next) => { return res.json({ query: req.query, params: req.params, body: req.body }); });
但實際上沒有看到res.body屬性的值。
multipart/form-data
呢?也沒有
text/plain
呢?仍是沒有。看來是沒有找到正確的打開方式。
express處理請求體須要使用專門的解析插件,官方推薦使用body-parser
和multer
,這兩個都是用來處理請求體的,不一樣的是,
multer只處理'multipart/form-data',其他類型的均可以由body-parser處理。拆分開的緣由是爲了你的應用能更自由地搭配。鑑於web開發中post請求量大,消息體解析頻繁,因此express@4.x以前一直都是內置body-parser做爲解析器(事實上body-parser的做者TJ也正是express的做者)。
express源碼
/lib/express.js
/** * Expose middleware */ exports.json = bodyParser.json exports.query = require('./middleware/query'); exports.static = require('serve-static'); exports.urlencoded = bodyParser.urlencoded /** * Replace removed middleware with an appropriate error message. */ ;[ 'bodyParser', 'compress', 'cookieSession', 'session', 'logger', 'cookieParser', 'favicon', 'responseTime', 'errorHandler', 'timeout', 'methodOverride', 'vhost', 'csrf', 'directory', 'limit', 'multipart', 'staticCache', ].forEach(function (name) { Object.defineProperty(exports, name, { get: function () { throw new Error('Most middleware (like ' + name + ') is no longer bundled with Express and must be installed separately. Please see https://github.com/senchalabs/connect#middleware.'); }, configurable: true }); });
最近express@4.x發佈了一批新特性,同時也解除了內置的body-parser,只保留了更加經常使用的兩個函數:json
和urlencoded
,你能夠經過express全局對象訪問這兩個解析函數,你基本上不再用單獨引入body-parser了。
var multer = require('multer'); app.use(multer()); // multipart/form-data
multer庫是專門爲了解決Form上傳文件而生的,在body-parser爲了遵循漸進式架構理念而放棄解析複雜的multipart/form-data
消息體時,multer應運而生,它使用場景不是很頻繁但顯然有時候缺它不可。
修改代碼以下:
const path = require('path'); const express = require('express'); const app = express(); const multer = require('multer'); // 設置靜態文件目錄 app.use(express.static(path.resolve('./static'))); console.info('靜態文件目錄:', path.resolve('./static')); // 首頁 app.get('/', function(req, res) { res.sendFile(path.join(__dirname, './index.html')); }); app.use(express.json()); // for parsing application/json app.use(express.urlencoded({ extended: true })); // for parsing application/x-www-form-urlencoded const upload = multer({ dest: 'uploads/' }); // for parsing multipart/form-data app.use('/user/:id', upload.single('avatar'), (req, res, next) => { return res.json({ query: req.query, params: req.params, file: req.file, body: req.body }); }); app.listen(3000, '0.0.0.0', () => { console.log('啓動服務器: http://localhost:3000'); });
選張圖片提交
解析成功!
由於multer設置了{ dest: 'uploads/' }
,因此成功保存了圖片到指定文件夾內。
https://github.com/expressjs/...
https://www.nodeapp.cn/http.html
https://github.com/expressjs/...
http://www.expressjs.com.cn/4...
若有不足 歡迎指正