vue中使用axios实例

基本用法

1.安装

npm i axios --save

2.在main.js中引入axios

import axios from 'axios'
Vue.prototype.$axios = axios

3.在组件中使用:

    axios请求的方法:
	  get:获取数据,请求指定的信息,返回实体对象
	  post:向指定资源提交数据
	  put:更新数据,从客户端向服务器传送的数据取代指定的文档的内容
	  patch:更新数据,是对put方法的补充,用来对已知资源进行局部更新
	  delete:请求服务器删除指定的数据
get请求
this.$axios.get('/a.json',{
    params: {
        id:1
    }
}).then(res=>{
	console.log(res.data);
},err=>{
	console.log(err);
})
			
//方法二
this.$axios({
	method: 'get',
	url: '/a.json',
    	params: {
            id:1
        }
}).then(res=>{
	console.log(res.data);
},err=>{
	console.log(err);
})
post请求
  1. form-data 表单提交,图片上传、文件上传时用该类型比较多
    application/json 一般是用于 ajax 异步请求
    form/data和json的区别在参数格式上
    一个只能传对象,一个可以传对象数组。格式json
//方法一
this.$axios.post('/url',{
	id:1
}).then(res=>{
	console.log(res.data);
},err=>{
	console.log(err);
})

//方法二
$axios({
	method: 'post',
	url: '/url',
	data: {
		id:1
	}
}).then(res=>{
	console.log(res.data);
},err=>{
	console.log(err);
})

//form-data请求
let data = {
	//请求参数
}

let formdata = new FormData();
for(let key in data){
	formdata.append(key,data[key]);
}

this.$axios.post('/a.json',formdata).then(res=>{
	console.log(res.data);
},err=>{
	console.log(err);
})
put和patch请求
//put请求
this.$axios.put('/url',{
	id:1
}).then(res=>{
	console.log(res.data);
})

//patch请求
this.$axios.patch('/url',{
	id:1
}).then(res=>{
	console.log(res.data);
})
delete请求
this.$axios.delete('/url',{
	params: {
		id:1
	}
}).then(res=>{
	console.log(res.data);
})

this.$axios.delete('/url',{
	data: {
		id:1
	}
}).then(res=>{
	console.log(res.data);
})

//方法二
axios({
    method: 'delete',
    url: '/url',
    params: { id:1 },
    data: { id:1 } 
}).then(res=>{
	console.log(res.data);
})
并发请求

同时进行多个请求,并统一处理返回值

this.$axios.all([
	this.$axios.get('/a.json'),
	this.$axios.get('/a.json')
]).then(
	this.$axios.spread((goodsRes,classifyRes)=>{
		console.log(goodsRes.data);
		console.log(classifyRes.data);
	})
)
axios实例

创建axios实例

let instance = this.$axios.create({
	baseURL: 'http://localhost:8080',
	timeout: 2000
})
			
instance.get('/a.json').then(res=>{
	console.log(res.data);
})

axios实例常用配置:

baseURL 请求的域名,基本地址,类型:String
timeout 请求超时时长,单位ms,类型:Number
url 请求路径,类型:String
method 请求方法,类型:String
headers 设置请求头,类型:Object
params 请求参数,将参数拼接在URL上,类型:Object
data 请求参数,将参数放到请求体中,类型:Object

axios全局配置

//配置全局的超时时长
this.$axios.defaults.timeout = 2000;
//配置全局的基本URL
this.$axios.defaults.baseURL = 'http://localhost:8080';

axios实例配置

let instance = this.$axios.create();
instance.defaults.timeout = 3000;

axios请求配置

this.$axios.get('/a.json',{
	timeout: 3000
}).then()

以上配置的优先级为:请求配置 > 实例配置 > 全局配置

拦截器

拦截器:在请求或响应被处理前拦截它们

请求拦截器

this.$axios.interceptors.request.use(config=>{
	// 发生请求前的处理
	return config
},err=>{
	// 请求错误处理
	return Promise.reject(err);
})

或者用axios实例创建拦截器

let instance = $axios.create();
instance.interceptors.request.use(config=>{
    return config
})

响应拦截器

this.$axios.interceptors.response.use(res=>{
	//请求成功对响应数据做处理
	return res //该返回对象会传到请求方法的响应对象中
},err=>{
	// 响应错误处理
	return Promise.reject(err);
})

取消拦截

let instance = this.$axios.interceptors.request.use(config=>{
	config.headers = {
		token: ''
	}
	return config
})

//取消拦截

this.$axios.interceptors.request.eject(instance);

错误处理

this.$axios.get('/url').then(res={

}).catch(err=>{
	//请求拦截器和响应拦截器抛出错误时,返回的err对象会传给当前函数的err对象
	console.log(err);
})

取消请求

主要用于取消正在进行的http请求。

let source = this.$axios.CancelToken.source();
this.$axios.get('/a.json',{
	cancelToken: source
}).then(res=>{
	console.log(res)
}).catch(err=>{
	//取消请求后会执行该方法
	console.log(err)
})

//取消请求,参数可选,该参数信息会发送到请求的catch中

source.cancel('取消后的信息');

你可能感兴趣的:(vue)