promise.all

Posted itly

tags:

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

  1. const fs = require(‘fs‘);
  2. function readFile(filePath) {
  3. return new Promise((resolve, reject) => {
  4. fs.readFile(filePath, (err, data) => {
  5. if (err) {
  6. return reject(err)
  7. }
  8. resolve(data)
  9. })
  10. })
  11. }
  12. /*
  13. * Promise.all方法接收一个数组参数,数组中是一个个的promise对象,
  14. * 该方法的返回值也是一个promise对象
  15. *
  16. * */
  17. Promise.all([
  18. readFile(‘./a.txt‘),
  19. readFile(‘./b.txt‘),
  20. readFile(‘.c.txt‘)
  21. ]).then(data=>{
  22. console.log(data[0].toString());
  23. console.log(data[1].toString());
  24. console.log(data[2].toString());
  25. }).catch((err)=>{
  26. console.log(err);
  27. });




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

React Native 为啥我的代码在完成任务之前执行? Promise.all().then() 异步问题

Promise.all(...).spread 不是并行运行 Promise 时的函数

如何使用Promise.All()执行异步诺言?

Promise.all的用法及其细节

Promise.all的用法及其细节

Promise.all的用法及其细节