promise的all和race的效果对比

Posted 勇敢*牛牛

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了promise的all和race的效果对比相关的知识,希望对你有一定的参考价值。

promise的all和race的效果对比

function fun1()
           return new Promise(_=>
                setTimeout(()=>
                    _("1")
                ,1000)
           )
        


function fun2()
    return new Promise(_=>
         setTimeout(()=>
             _("2")
         ,2000)
    )
 

Promise.all([fun1(),fun2()]).then((ret)=>
       console.log("all",ret);
)

Promise.race([fun1(),fun2()]).then((ret)=>
   console.log("rece",ret);
)

以上是关于promise的all和race的效果对比的主要内容,如果未能解决你的问题,请参考以下文章

Promise.all和Promise.race的区别和使用

Promise和$.Deferred总结

手写Promise.all和Promise.race

Promise.all和Promise.race区别,和使用场景

JavaScript的Promise.all和Promise.race

手写promise.all和race