简体   繁体   中英

best way to zip results from Q.all

What is the best way to zip results from parallel (Q.all) promises call? Simply

.spread(function(result1, result2) {return _.zip(result1, result2);})

Anything nicer?

您可以轻松地将其缩短为

.spread(_.zip)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM