码迷,mamicode.com
首页 > 其他好文 > 详细

express的中间件body-parse

时间:2019-08-30 09:20:45      阅读:62      评论:0      收藏:0      [点我收藏+]

标签:console   use   div   配置   app   fun   post   log   require   

1. 安装

npm install body-parser

2.

var bodyParser = require(‘body-parser‘);

//只要加入这个配置,在req请求对象上会多出来一个属性
//parse application/x-www-form-urlencoded
app.use(bodyParser.urlencoded({ extended: false }))
//parse application/json
app.use(bodyParser.json())

 app.post(‘/test‘, function(req, res) {
    console.log(req.body);
 });

 

 

express的中间件body-parse

标签:console   use   div   配置   app   fun   post   log   require   

原文地址:https://www.cnblogs.com/flyerya/p/11433073.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!