欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

axios合并请求

程序员文章站 2022-07-02 12:32:36
...

请求 get post put delete

//this.$axios.get||post(url,[post的时候有data],options)
//配置公共数据
this.$axios.defaults.baseURL='http://127.0.0.1:8888/';
var q1=this.$axios.get('');
var q2=this.$axios.post('add','a=1');

//合并这两个请求,并处理其成功和失败
this.$axios.all([q1,q2])
.then(this.$axios.spread((res1,res2)=>{
	//全成功
}))