c语言sscanf函数的用法是什么
208
2022-11-30
async 与 await
文章目录
async 函数await 表达式将async 与 await 相结合
async 函数
函数的返回值为 promise 对象promise 对象的结果由 async 函数执行的返回值决定
例如:
await 表达式
await 右侧的表达式一般为 promise 对象, 但也可以是其它的值如果表达式是 promise 对象, await 返回的是 promise 成功的值如果表达式是其它值, 直接将此值作为 await 的返回值
注意:
await 必须写在 async 函数中, 但 async 函数中可以没有 await如果 await 的 promise 失败了, 就会抛出异常, 需要通过 try…catch 捕获处理,可以在catch中拿到错误的结果。
例如:
将async 与 await 相结合
①场景模拟:读取三个hmtl文件,并将其按顺序进行拼接。 用回调:
//回调函数的方式const fs = require('fs');fs.readFile('./resource/1.html', (err,) => { if(err) throw err; fs.readFile('./resource/2.html', (err,) => { if(err) throw err; fs.readFile('./resource/3.html', (err,) => { if(err) throw err; console.log(data1 + data2 + data3); }); });});
用 async 与 await:
const fs = require('fs');const util = require('util');const mineReadFile = util.promisify(fs.readFile);async function main(){ try{ //读取第一个文件的内容 let data1 = await mineReadFile('./resource/1x.html'); let data2 = await mineReadFile('./resource/2.html'); let data3 = await mineReadFile('./resource/3.html'); console.log(data1 + data2 + data3); }catch(e){ console.log(e.code); }}main();
②场景模拟:async与await结合发送AJAX请求
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~