express的中间件body-parse

Posted flyerya

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了express的中间件body-parse相关的知识,希望对你有一定的参考价值。

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的主要内容,如果未能解决你的问题,请参考以下文章

body-parser Node.js(Express) HTTP请求体解析中间件

Postman测试express中间件(body-parser),req.body为空的问题

如何将 body-parser 与 LoopBack 一起使用?

物联网服务NodeJs-5天学习第二天篇③ ——Express Web框架 和 中间件

node的express框架,核心第三方模块body-parser 获取我们所有post请求传过来数据

Express