什么是角色
app.use(bodyParser.json());
app.use(bodyParser.urlencoded());
bodyParser() 和 CookieParser() 有什么区别
什么是角色
app.use(bodyParser.json());
app.use(bodyParser.urlencoded());
bodyParser() 和 CookieParser() 有什么区别
body-parser是一个正文解析中间件,它req.body
使用(例如) a 的参数值填充POST
。
cookie-parser解析 cookie 并填充 req.cookies 与 cookie 名称的对象。
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