时间:2021-05-26
好,下面上货。
1、安装axios
npm install axios --save2、添加axios组件
import axios from 'axios'axios.defaults.headers.post['Content-Type'] = 'application/x-www-form-urlencoded';axios.defaults.baseURL = 'http://localhost:7878/zkview';Vue.prototype.$ajax = axios;3、get请求
testGet: function () { this.$ajax({ method: 'get', url: '/test/greeting', params: { firstName: 'Fred', lastName: 'Flintstone' } }).then(function (response) { console.log(response); }).catch(function (error) { console.log(error); });},4、post请求
testPost: function () { var params = new URLSearchParams(); params.append('name', 'hello jdmc你好'); params.append('id', '2'); this.$ajax({ method: 'post', url: '/test/greeting2', data:params// data: {id: '3', name: 'abc'} }).then(function (response) { console.log(response); }).catch(function (error) { console.log(error); }) }5、运行结果:
6、注意:
在使用post方式的时候传递参数有两种方式,一种是普通方式,一种是json方式,如果后台接受的是普通方式,那么使用上述方式即可。
普通的formed方式
var params = new URLSearchParams();params.append('name', 'hello jdmc你好');params.append('id', '2');data:params后台接收参数:
public Student greeting2(int id,String name) {json方式
data: {id: '3', name: 'abc'}后台接收参数
public Object greeting2(@RequestBody Object student) {以上这篇基于vue 添加axios组件,解决post传参数为null的问题就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
问题描述在使用vue-axios向后端post数据时,PHP端获取不到post的数据。问题解决修改php.ini配置找到php.ini配置文件,查找enable
需求点击导出下载表格对应的excel文件在vue项目中,使用的axios,后台java提供的post接口api实现第一步,在axios请求中加入参数,表示接收的
使用axios处理post请求时,出现的问题解决默认情况下:axios.post(url,params).then(res=>res.data);当url是远程
如下:changeList为一个数组此时请求的参数格式为下图解决方案为将数组json序列化此时参数格式为以上这篇在axios中使用params传参的时候传入数组
最开始的时候,因为请求后台出现跨域问题。查找资料配置proxyTable,解决跨域问题。如下图所示:axios请求页面:this.$axios.post('/a