如何获取5个Promise中的data值赋值给新的数组,网上没搜到类似的,,,,谢谢,
Promise.all(5个Promise数组).then(res=>{ // res 就是结果数组 console.log(res) }).catch(res=>{ // res 第一个reject的结果 console.log(res) })
Promise.all了解一下。