为了账号安全,请及时绑定邮箱和手机立即绑定

axios post类型请求,express怎么接收?

axios post类型请求,express怎么接收?

小唯快跑啊 2019-02-27 15:10:52
axios({  method: 'post',  url: 'http://localhost:3000/verify',  headers: {    'Content-Type': 'application/x-www-form-urlencoded',    'Accept': 'text/json'  },  data: {    buyParam: JSON.stringify([{ "goodsId": 5977, "amount": 1 }, { "goodsId": 5978, "amount": 1 }])  }}).then((res) => {  console.log(res)})router.post('/verify', cors(), function(req, res, next) {  console.log(req)  console.log(req.body)  console.log(req.body.buyParam)  res.json(req.body.buyParam);  // res.json({  //   code: 0,  //   msg: ''  // });});req.body.buyParam // undefined
查看完整描述

1 回答

?
交互式爱情

TA贡献1712条经验 获得超3个赞

npm install body-parser

var express = require('express')

var bodyParser = require('body-parser')


var app = express()


// parse application/x-www-form-urlencoded

app.use(bodyParser.urlencoded({ extended: false }))


// parse application/json

app.use(bodyParser.json())


app.use(function (req, res) {

  res.end(JSON.stringify(req.body, null, 2))

})


查看完整回答
反对 回复 2019-03-14
  • 1 回答
  • 0 关注
  • 748 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信