vue axios

作者: luguilun | 来源:发表于2019-04-11 22:07 被阅读0次

记录一下 搞忘了方便上来看看。
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)
});

https://www.jb51.net/article/123485.htm

相关文章

网友评论

      本文标题:vue axios

      本文链接:https://www.haomeiwen.com/subject/gxlfwqtx.html