📜  异步获取 api 调用 - Javascript 代码示例

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

代码示例1
async function getUserAsync(name) {
  try{
    let response = await fetch(`https://api.github.com/users/${name}`);
    return await response.json();
  }catch(err){
    console.error(err);
    // Handle errors here
  }
}