在express中获取post请求数据
express没有内置的POST请求API,但是有听说将body-parser
内置到express中了。但是我试了直接使用不了。所以还是直接安装第三方包
使用第三方包body-parser
安装
npm install body-parser
在app.js中
var bodyParser = require('body-parser')
// 配置模板引擎和 body-parser 一定要在 app.use(router) 挂载路由之前
// parse application/x-www-form-urlencoded
app.use(bodyParser.urlencoded({ extended: false }))
// parse application/json
app.use(bodyParser.json())