当前位置: 首页 > article >正文

async/await 用法

1. 什么是 async/await

async/await ES8(ECMAScript 2017)引入的新语法,用来简化 Promise 异步操作。在 async/await 出 现之前,开发者只能通过链式 .then() 的方式处理 Promise 异步操作。示例代码如下:

import thenFs from 'then-fs'
 
thenFs.readFile("./files/1.txt",'utf8') // 返回值是 promise 的实例对象。
.then(r1=>{   // 通过 .then 为第一个 Promise 实例指定成功之后的回调函数。
  console.log(r1)
  return thenFs.readFile("./files/2.txt",'utf8')  // 在第一个 .then 中返回一个新的 promise 的实例对象。
})
.then(r2=>{ // 继续调用 .then 为上一个 .then 的返回值(新的 Promise 实例) 指定成功之后的回调函数。
   console.log(r2)
   return thenFs.readFile("./files/3.txt",'utf8')  // 在第二个 .then 中返回一个新的 promise 的实例对象。
})
.then(r3=>{ // 继续调用 .then 为上一个 .then 的返回值(新的 Promise 实例) 指定成功之后的回调函数。
  console.log(r3)
})
 
// 运行结果:
// txt file 1
// txt file 2
// txt file 3
  • .then 链式调用的优点: 解决了回调地狱的问题
  • .then 链式调用的缺点: 代码冗余、阅读性差、 不易理解 

 2. async/await 的基本使用

import thenFs from "then-fs";

//按照顺序读取 1,2,3文件的内容
async function getAllFile(){
  const r1 = await thenFs.readFile("./files/1.txt",'utf8')
  // 当在 thenFs.readFile()方法前面添加 await 关键字时,返回的不是一个 Promise 实例了,而是文件的内容。
  console.log(r1)
  const r2 = await thenFs.readFile("./files/2.txt",'utf8')
  console.log(r2)
  const r3 = await thenFs.readFile("./files/3.txt",'utf8')
  console.log(r3)
}
//调用方法
getAllFile();

// 运行结果:
// txt file 1
// txt file 2
// txt file 3

3. async/await 的使用注意事项

  1. 如果在 function 中使用了 await,则 function 必须被 async 修饰
  2. 在 async 方法中,第一个 await 之前的代码会同步执行,await 之后的代码会异步执行
import thenFs from "then-fs";

console.log("A")
//按照顺序读取 1,2,3文件的内容
async function getAllFile(){
  console.log("B")
  const r1 = await thenFs.readFile("./files/1.txt",'utf8')
  const r2 = await thenFs.readFile("./files/2.txt",'utf8')
  const r3 = await thenFs.readFile("./files/3.txt",'utf8')
  console.log(r1,r2,r3)
  console.log("D")
}

//调用方法
getAllFile();
console.log("C")

// 运行结果:
// A
// B
// C
// txt file 1
// txt file 2
// txt file 3
// D

http://www.kler.cn/a/412.html

相关文章:

  • cesium入门学习二
  • 使用helm安装canal-server和canal-admin
  • Mysql 查询性能调优总结
  • H3C MPLS跨域optionB
  • Next.js 14 性能优化:从首屏加载到运行时优化的最佳实践
  • 计算机图形学知识点汇总
  • 接口文档包含哪些内容?怎么才能写好接口文档?十年测试老司机来告诉你
  • C/C++每日一练(20230314)
  • 为什么 Python 没有 main 函数?
  • CANoe中使用CAPL刷写流程详解(Trace图解)(CAN总线)
  • 一个Bug让人类科技倒退几十年?
  • Windows电脑密码忘记解决方法
  • π-Day快乐:Python可视化π
  • 【linux】Linux基本指令(上)
  • 从Linux内核中学习高级C语言宏技巧
  • 【云原生】Swarm解决docker server的集群化管理和部署
  • 前端前沿web 3d可视化技术 ThreeJS学习全记录
  • 【小白】git是什么?gitee和git和github的关系?
  • ES+Redis+MySQL,这个高可用架构设计太顶了!
  • 2022-12-10青少年软件编程(C语言)等级考试试卷(五级)解析
  • 【C/C++】必知必会知识点大总结
  • 如何用python代码,更改照片尺寸,以及更换照片底色
  • 「Python 基础」常用模块
  • 【学习笔记】读取文件中的字符串与 fgets 的坑
  • js逆向爬取某音乐网站某歌手的歌曲
  • CentOS7安装python3超详细教程