async我可以使用关键字将 JavaScript 函数标记为“异步”(即返回一个承诺) 。像这样:
async
async function foo() { // Do something }
箭头函数的等效语法是什么?
异步 箭头函数 如下所示:
const foo = async () => { // do something }
对于传递给它的 单个参数 ,异步 箭头函数 看起来像这样: __
const foo = async evt => { // do something with evt }
对于传递给它的 多个参数 ,异步 箭头函数 看起来像这样: __
const foo = async (evt, callback) => { // do something with evt // return response with callback }
匿名 表单也可以:
const foo = async function() { // do something }
异步函数 声明 如下所示:
async function foo() { // do something }
在回调 中使用异步函数:
const foo = event.onCall(async () => { // do something })
在 类 中使用异步方法:
async foo() { // do something }