📜  async await promise all javascript 代码示例

📅  最后修改于: 2022-03-11 15:04:22.384000             🧑  作者: Mango

代码示例2
let characterResponse = await fetch('http://swapi.co/api/people/2/')
let characterResponseJson = await characterResponse.json()
let films = await Promise.all(
  characterResponseJson.films.map(async filmUrl => {
    let filmResponse = await fetch(filmUrl)
    return filmResponse.json()
  })
)
console.log(films)