📅  最后修改于: 2022-03-11 15:02:25.796000             🧑  作者: Mango
var bodyParser = require('body-parser')
// parse application/x-www-form-urlencoded
app.use(bodyParser.urlencoded({ extended: false }))
// parse application/json
app.use(bodyParser.json())