摘要: async 是“异步”的简写,而 await 可以认为是 async wait 的简写。所以应该很好理解 async 用于申明一个 function 是异步的,而 await 用于等待一个异步方法执行完成。 另外还有一个很有意思的语法规定,await 只能出现在 async 函数中。 突然某天我写了 阅读全文
posted @ 2021-04-02 17:29 ZerlinM 阅读(6259) 评论(1) 推荐(1) 编辑