promise.all
Posted itly
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了promise.all相关的知识,希望对你有一定的参考价值。
const fs = require(‘fs‘);
function readFile(filePath) {
return new Promise((resolve, reject) => {
fs.readFile(filePath, (err, data) => {
if (err) {
return reject(err)
}
resolve(data)
})
})
}
/*
* Promise.all方法接收一个数组参数,数组中是一个个的promise对象,
* 该方法的返回值也是一个promise对象
*
* */
Promise.all([
readFile(‘./a.txt‘),
readFile(‘./b.txt‘),
readFile(‘.c.txt‘)
]).then(data=>{
console.log(data[0].toString());
console.log(data[1].toString());
console.log(data[2].toString());
}).catch((err)=>{
console.log(err);
});
以上是关于promise.all的主要内容,如果未能解决你的问题,请参考以下文章
React Native 为啥我的代码在完成任务之前执行? Promise.all().then() 异步问题