vue axios 前端数据传给后端一直 “参数不足”

先上参数不足时的代码:

that.$axios.post(that.url + "/user/login",
                        {
                          email:that.ruleForm.email,
                          pwd:that.ruleForm.password,
                        },
                        { headers: {'Content-Type': 'application/x-www-form-urlencoded;charset=utf-8 '}
                        })
                .then(function(response){
                    console.log(response)
                }.catch(function(err){
                     console.log(err)
                }

代码左看右看都没有问题,控制台也有数据传过去,可一直“参数不足”

全网搜集方法,终于搞出来了

that.$axios.post(that.url + "/user/login",
                        that.qs.stringify({
                          email:that.ruleForm.email,
                          pwd:that.ruleForm.password,
                        }),
                        { headers: {'Content-Type': 'application/x-www-form-urlencoded;charset=utf-8 '}
                        })
                .then(function(response){
                    console.log(response)}
                .catch(function(err){
                    console.log(err)
                    })

总结:给提交的数据外面套上that.$qs.stringify( )

如果直接加上,会发现报错了!因为要引入俩个东西

1.vue-resource

1、安装vue-resource到项目中,找到当前项目

输入:npm install vue-resource --save



2、安装完毕后,在main.js中导入,如下所示:

import  VueResource  from 'vue-resource'

Vue.use(VueResource) 


————————————————
版权声明:本文为CSDN博主「木子楠」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/beautifultian/article/details/70313001

 2.qs

2.1 qs 安装
npm install qs / cnpm install qs (安装了淘宝镜像的才可以使用)

2.2 qs 全局引入

//在main.js引入qs
import  qs from 'qs'
//配全局属性配置,在任意组件内可以使用this.$qs获取qs对象
 Vue.prototype.$qs = qs

泪目!!!!折腾了一下午!!!

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值