vue axios并发请求
axios.all([{
method: 'get',
url: 'http://123.207.32.32:8000/home/data',
params: {
type: 'sell',
page: 1
}
},
{
method: 'get',
url: 'http://123.207.32.32:8000/home/multidata'
}
]).then(res => {
console.log(res)
})
axios.all([{
method: 'get',
url: 'http://123.207.32.32:8000/home/data',
params: {
type: 'sell',
page: 1
}
},
{
method: 'get',
url: 'http://123.207.32.32:8000/home/multidata'
}
]).then(axios.spread((res1, res2) => {
console.log(res1);
console.log(res2);
}))