美文网首页工作生活
使用body-parser处理前端post请求

使用body-parser处理前端post请求

作者: Tme_2439 | 来源:发表于2019-07-01 14:42 被阅读0次

安装模块body-parser使用中间件加载即可

npm i body-parser

const express = require('express')
const app = express()
const port = process.env.PORT || 8000
app.listen(port, () => {
    console.log('服务启动成功:http://localhost:8000')
})

// 支持post请求,前端对象形式传递过来的,application/x-www-form-urlencoded(默认)
const bodyParser = require('body-parser')
app.use(bodyParser.urlencoded({extended: false}))
app.use(bodyParser.json())

相关文章

网友评论

    本文标题:使用body-parser处理前端post请求

    本文链接:https://www.haomeiwen.com/subject/mvmgcctx.html