我可以用async关键字将JavaScript函数标记为“async”(即返回promise)。这样地:

async function foo() {
  // Do something
}

箭头函数的等效语法是什么?


当前回答

对于静态异步箭头函数,其工作方式如下:

static myFunction = async () => {
    // your code here
}

其他回答

带参数的异步箭头函数语法

const myFunction = async (a, b, c) => {
   // Code here
}

我的异步函数

const getAllRedis = async (key) => {
  let obj = [];

  await client.hgetall(key, (err, object) => {
    console.log(object);
    _.map(object, (ob)=>{
      obj.push(JSON.parse(ob));
    })
    return obj;
    // res.send(obj);
});
}
const asynchronousFunction = async () => {
  // do something;
  // await something else;
}

您还可以执行以下操作:

 YourAsyncFunctionName = async (value) => {

    /* Code goes here */

}

对于静态异步箭头函数,其工作方式如下:

static myFunction = async () => {
    // your code here
}