首页 > 移动平台 > 详细

axios并发请求

时间:2020-12-24 09:23:38      阅读:39      评论:0      收藏:0      [点我收藏+]

方式一

<script>
    axios([
        axios.get(‘http://localhost:8080/student/getAllStudent‘),
        axios.post(‘http://localhost:8080/student/getStudentById‘,{id:1})
    ]).then(res=>{//请求成功相应的是一个数组
        console.log(res[0]);
        console.log(res[1]);
    });
</script>

  

方式二(使用spread方法处理相应数组结果)

<script>
    axios([
        axios.get(‘http://localhost:8080/student/getAllStudent‘),
        axios.post(‘http://localhost:8080/student/getStudentById‘,{id:1})
    ]).then(
        axios.spread((res1,res2)=>{
            console.log(res1);
            console.log(res2);
        })
    );
</script>

  

<script>
    axios([
        axios.get(‘http://localhost:8080/student/getAllStudent‘),
        axios.post(‘http://localhost:8080/student/getStudentById‘,{id:1})
    ]).then(res=>{
        console.log(res[0]);
        console.log(res[1]);
    });
</script>

axios并发请求

原文:https://www.cnblogs.com/ixtao/p/14182415.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!