-
// 实际开发中两种请求方式应用 http://localhost:8080 http://localhost:9090
let instance = axios.create({
baseURL: 'http://localhost:8080', //请求的域名基本配置
timeout: 1000, //请求的超时时长
})
let instance1 = axios.create({
baseURL: 'http://localhost:9090', //请求的域名基本配置
timeout: 2000, //请求的超时时长
})
instance.get('/list',{
params:{}
}).then((res) => {
console.log(res);
})
查看全部 -
axios 请求配置
查看全部 -
//axios基础的配置参数
axios.create({
baseURL: 'http://localhost:8080', //请求的域名基本配置
timeout: 1000, //请求的超时时长
url: 'data.json', //请求路径
method: 'get,post,put,patch,delete',//请求方法
headers:{
token: ''
}, //请求头
params:{},//请求参数拼接在url上
data:{},//请求参数放在请求体
})
查看全部 -
axios创建一个实例设置超时配置
查看全部 -
axios.spread
查看全部 -
axios下formData请求
查看全部 -
axios请求方法 : post get put patch delete
查看全部 -
async function
查看全部 -
vant组件
查看全部 -
Axios请求可以取消请求
查看全部 -
axios有请求拦截器和响应拦截器,可以在请求拦截器里设置header公共参数
查看全部 -
Axios是对Promise的封装,Axios.all可以实现并发请求
查看全部 -
1.axios 请求方法: get:获取数据 post:提交数据 put:更新数据(所有数据推送到后端) patch:更新数据(只将修改的数据推送到后端) delete:删除数据 2.axios其它格式 axios({ method:'get', url:'/data.json', params:{id:2} }) 3.get传参方法(params): axios.get('/data.json',{params:{id:12}}).then(($res)=>{console.log(res)})
查看全部 -
删除vue2.* : npm uninstall -g vue-cli
安装vue3.*: npm install -g @vue/cli
创建项目: vue create vue-demo
yarn add axios
查看全部 -
axios方法
查看全部
举报