1、安装
npm install axios --save
2、在main.js文件引入
import Axios from 'axios';//后台交互
Vue.prototype.$http=Axios
//defaults 设置全局默认路径
Axios.defaults.baseURL="/"
3、使用
//第一种
this.$http.post('/index/customer/',{//里面写要传的值}).then(function(res) {
// console.log('这是返回的客户数据');
// console.log(res.data.data);
this.customerArr = res.data.data
});//如果是get请求就把post换成get
//第二种,推荐使用该方法
this.$http({
url: '/index/patchBase/',
method: 'get',
headers: { 'X-Requested-With': 'XMLHttpRequest' },
params:{}//传值 如:params:{id:1,name:"gw"}
}).then(res => {
console.log('数据接收');
console.log(res.data.data);
});
this.$http({
url: '/index/patchBase/',
method: 'post',
headers: { "Content-Type": "multipart/form-data" },
data:{}//传值
}).then(res => {
console.log('数据接收');
console.log(res.data.data);
});
需要注意的是 post、get请求的请求头数据不一样,传值方法不一样:get是params,post请求是用data(使用对象)传值
config目录下的index.js中的
proxyTable: {
"/": {
target: 'http://127.0.0.1:8080',
changeOrigin: true,
pathRewrite: {
'^/': ''
}
},
"/api/": {
target: 'http://127.0.0.1:8082',
changeOrigin: true,
pathRewrite: {
'^/api/': ''
}
}
},
这个针对是单个的服务,只针对于单个的接口,请求多个服务的配置,工作中遇到使用后端是spring-cloud 通过zuul网关进行调配的
标签:Vue,服务,log,get,res,http,data,console,交互 From: https://www.cnblogs.com/devilben/p/16811752.html