3

什么是角色 app.use(bodyParser.json()); app.use(bodyParser.urlencoded());

bodyParser() 和 CookieParser() 有什么区别

4

2 回答 2

2

body-parser是一个正文解析中间件,它req.body使用(例如) a 的参数值填充POST

cookie-parser解析 cookie 并填充 req.cookies 与 cookie 名称的对象。

于 2015-02-11T11:40:10.947 回答
0

bodyParser.json() - a middleware used for going over POST request data, parse it into json on put it on req.body.

cookieParser() - a middleware that parse cookie header and populate req.cookies

于 2015-02-11T09:24:42.583 回答