axios发送并发请求

同时发送两个请求
1.使用axios.all, 可以放入多个请求的数组
2.axios.all([]) 返回的结果是一个数组,使用 axios.spread 可将数组 [res1,res2] 展开为 res1, res2
在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/weixin_46852620/article/details/113512628