java - vue-resourse的post请求前端向后端传值 后端接收null
问题描述
let adrObj = { ’consignee’: this.contact, ’address’: this.detailAdress, ’province’: this.addArr[0], ’city’: this.addArr[1], ’area’: this.addArr[2], ’isDefault’: this.isDefult === true ? ’1’ : ’0’, ’consigneePhone’: ’0’ + this.phoneNum, ’id’: id, ’customerCode’: this.CUSTOMERCODE}this.$http.post(’/api/receivingAddress/editMyAddress’, adrObj).then((res) => { console.log(’success’, res)}, (res) => { console.log(’error’, res.data)})
问题描述,通过这种方式向后端传参,后端接收到的都是null
1.控制台中也有数据,但是后端接收为null2.我知道设置emulateJSON为true的话,已表单的方式提交后端可以接收到参数,但是中文是乱码的。3.有没有解决方式,可以正常使用post提交的
问题解答
回答1:根据你的描述,你后台能够接受以x-www-form-urlencoded形式提交的数据,你的代码提交的是json数据,需要修改后台。
至于x-www-form-urlencoded提交的数据中文乱码的问题,你在headers中设置一下charset试试
Vue.http.options.headers = { ’Content-Type’: ’application/x-www-form-urlencoded; charset=UTF-8’}
如果还是不行,修改后台
相关文章:
1. python - Django有哪些成功项目?2. dockerfile - [docker build image失败- npm install]3. apache - 想把之前写的单机版 windows 软件改成网络版,让每个用户可以注册并登录。类似 qq 的登陆,怎么架设服务器呢?4. docker-compose中volumes的问题5. java - 对于jsp技术,aspx技术的困惑6. javascript - [,null]是什么用法7. docker - 各位电脑上有多少个容器啊?容器一多,自己都搞混了,咋办呢?8. java - idea如何不显示.idea target这些文件夹9. docker-compose 为何找不到配置文件?10. apache - 怎么给localhost后面默认加上8080端口
