记录一下 搞忘了方便上来看看。
import axios from 'axios'
使用方式1 axios().then().catch()
使用方式2
var service = axios.create({ 配置})
个人常用使用方式
创建一个request.js文件
var service = axios.create({ 配置})
export default service
别的页面调用
import request from './request.js'
function add(){
return request({
url:' ',
method:'post/get',
data:{}
})
}
//发起一个user请求,参数为给定的ID
axios.get('/user?ID=1234')
.then(function(respone){
console.log(response);
})
.catch(function(error){
console.log(error);
});
//上面的请求也可选择下面的方式来写
axios.get('/user',{
params:{
ID:12345
}
})
.then(function(response){
console.log(response);
})
.catch(function(error){
console.log(error)
});