Bootstrap

vue+elementUI 的axios方法post后端数据

以前习惯了jquery的ajax 方法向后端传递参数,使用法法很简单。

由于刚接触vue+element,没有想到vue的后端接口访问方法这么复杂麻烦,一个axios的post方法弄了几天时间,怎么调试后端总是接收不到参数(我是pc端,没有用什么npm,直接调用使用的vue.js与axios.min.js,所以网上很多方法根本不能用),最终总算搞定了,下面我写下我的实现方法:

 var   addObj ={
                    HisPatientID:this.CheckHisPatientID,
                    patientName:this.CheckPatientName,
                    patientDoctor:this.CheckPatientDoctor
                }

                
                axios({
                    url: '/e/sadmin/api/patient.api.php?OP=add',
                    method: 'post',
                    data: addObj,
                    transformRequest: [function (data) {
                        let ret = ''
                        for (let it in data) {
                            ret += encodeURIComponent(it) + '=' + encodeURIComponent(data[it]) + '&'
                        }
                        return ret
                    }],
                    headers: {
                        'Content-Type': 'application/x-www-form-urlencoded'
                    }
                }).then(function (response) {
                   
//响应后执行

                }).catch(function (error) {
//报错后执行

                });

;