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

用vue 和axios 发送数据,后台接收不到!!!

用vue 和axios 发送数据,后台接收不到!!!

心有法竹 2019-02-28 15:04:53
这样写了之后 会提示接口404 并且传的值最后有一empty
查看完整描述

1 回答

?
慕尼黑8549860

TA贡献1818条经验 获得超11个赞

axios({

  url: '/user',

  method: 'post',

  data: {

    firstName: 'Fred',

    lastName: 'Flintstone'

  },

  transformRequest: [function (data) {

    // Do whatever you want to transform the data

    let ret = ''

    for (let it in data) {

      ret += encodeURIComponent(it) + '=' + encodeURIComponent(data[it]) + '&'

    }

    return ret

  }],

  headers: {

    'Content-Type': 'application/x-www-form-urlencoded'

  }

})

https://img1.sycdn.imooc.com//5c7b7e3300014fad08000753.jpg

参考axios官网资料


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

添加回答

举报

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