首页 > web前端 > js教程 > 正文

异步/等待

心靈之曲
发布: 2024-10-10 08:02:50
转载
716人浏览过

异步/等待

异步/等待

与 promise 相比,async/await 是一种更新的异步代码编写方式。 async/await 的主要优点是提高了可读性并避免了承诺链。 promise 可能会变得很长、难以阅读,并且可能包含难以调试的深层嵌套回调。

例子

回想一下我们之前的获取。

fetch('https://jsonplaceholder.typicode.com/todos/1')
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('error:', error))
  .finally(() => console.log('all done'));
登录后复制

使用 async/await,代码可以重构为如下所示:

async function fetchdata() {
  try {
    const response = await fetch('https://jsonplaceholder.typicode.com/todos/1');
    const data = await response.json();
    console.log(data);
  } catch (error) {
    console.error('error:', error);
  } finally {
    console.log('all done');
  }
}

fetchdata();
登录后复制

虽然可能多了几行代码,但这个版本更容易阅读,因为它类似于普通的同步函数。此外,如果 .then() 语句内的函数更复杂,则可读性和可调试性将受到更大的影响。 async/await 示例更加清晰。

示例 2:从餐厅订餐

async/await 的结构

async/await 函数有两个基本部分:async 和await。 async 关键字加在函数声明前,await 用于异步任务开始时。

让我们以从餐厅点餐的例子来说明这一点:

// simulate the order process with async/await
async function foodorder() {
  console.log("ordering food...");
  await new promise(resolve => settimeout(resolve, 2000)); // wait 2 seconds for food to be prepared
  return "your food is ready!";
}

// simulate the eating process
function eatfood(order) {
  console.log(order); // this logs "your food is ready!"
  console.log("enjoying the meal!");
}

// simulate continuing the conversation
function continueconversation() {
  console.log("while waiting, you continue chatting with friends...");
}

async function orderfood() {
  console.log("you've arrived at the restaurant.");
  const order = await foodorder(); // place the order and wait for it to be ready
  continueconversation(); // chat while waiting
  eatfood(order); // eat the food once it arrives
}

orderfood();
登录后复制

输出将是

You've arrived at the restaurant.
Ordering food...
While waiting, you continue chatting with friends...
Your food is ready!
Enjoying the meal!
登录后复制

以上就是异步/等待的详细内容,更多请关注php中文网其它相关文章!

最佳 Windows 性能的顶级免费优化软件
最佳 Windows 性能的顶级免费优化软件

每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。

下载
相关标签:
来源:dev.to网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
开源免费商场系统广告
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习
PHP中文网抖音号
发现有趣的

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号