我试图创建一个函数,通过使用 promise.all
这样地:
const fetchRandomItems = async (numberOfItems) =>
const myPromises = [fetchRandomItem, fetchRandomItem, fetchRandomItem] // The length of this array should be equal to numberOfItems
promise.all(myPromises)
}
我不知道如何使我的承诺的长度等于numberofitems
请,谢谢!
1条答案
按热度按时间rqcrx0a61#
您构建一个数组,就好像承诺是任何其他对象一样。
或