博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[Javascript] Await a JavaScript Promise in an async Function with the await Operator
阅读量:5779 次
发布时间:2019-06-18

本文共 881 字,大约阅读时间需要 2 分钟。

The  is used to wait for a promise to settle. It pauses the execution of an async function until the promise is either fulfilled or rejected.

 

const API_URL = "https://starwars.egghead.training/";const output = document.getElementById("output");const spinner = document.getElementById("spinner");async function queryAPI(endpoint) {  const response = await fetch(API_URL + endpoint);  if (response.ok) {    return response.json();  }  throw Error("Unsuccessful response");}async function main() {  try {    const [films, planets, species] = await Promise.all([      queryAPI("films"),      queryAPI("planets"),      queryAPI("species")    ]);    output.innerText =      `${films.length} films, ` +      `${planets.length} planets, ` +      `${species.length} species`;  } catch (error) {    console.warn(error);    output.innerText = ":(";  } finally {    spinner.remove();  }}main();

 

转载地址:http://knuyx.baihongyu.com/

你可能感兴趣的文章
又拍云沈志华:如何打造一款安全的App
查看>>
Nginx 学习书单整理
查看>>
克服大数据集群的挑战
查看>>
PostgreSQL并发控制(MVCC, 事务,事务隔离级别)
查看>>
12月19日一周一次【Python基础语法】
查看>>
DM***的第二阶段OSPF
查看>>
C# 列表 - List
查看>>
python socket编程
查看>>
20180702搭建青岛RAC记录
查看>>
安装部署TIDB分布式数据库
查看>>
Spring Security OAuth 实现OAuth 2.0 授权
查看>>
linux文件及简单命令学习
查看>>
dubbo源码分析-架构
查看>>
新 Terraform 提供商: Oracle OCI, Brightbox, RightScale
查看>>
6套毕业设计PPT模板拯救你的毕业答辩
查看>>
IT兄弟连 JavaWeb教程 JSP与Servlet的联系
查看>>
Windows phone 8 学习笔记
查看>>
linux并发连接数:Linux下高并发socket最大连接数所受的各种限制
查看>>
洛谷——P2176 [USACO14FEB]路障Roadblock
查看>>
我的友情链接
查看>>