它是Express框架的中间体,可以用来解析请求体内容。
引入模块
const bodyParser = require('body-parser')
四种使用场景:
1.处理表单提交时的内容类型/application/x-www-form-urlencoded
app.use(bodyParser.urlencoded())
2.json数据格式的请求参数
app.use(bodyParser.json())
3.处理文本数据
bodyParser.text(options)
4.处理Buffer流数据
bodyParser.raw(options)