为了账号安全,请及时绑定邮箱和手机立即绑定

在新的Promise()构造函数中使用async / await是一种反模式吗?

在新的Promise()构造函数中使用async / await是一种反模式吗?

红颜莎娜 2019-08-19 16:16:39
在新的Promise()构造函数中使用async / await是一种反模式吗?我正在使用该async.eachLimit功能一次控制最大操作数。const { eachLimit } = require("async");function myFunction() {  return new Promise(async (resolve, reject) => {    eachLimit((await getAsyncArray), 500, (item, callback) => {      // do other things that use native promises.    }, (error) => {      if (error) return reject(error);      // resolve here passing the next value.    });  });}如您所见,我无法将该myFunction函数声明为异步,因为我无法访问eachLimit函数的第二个回调内的值。
查看完整描述

1 回答

  • 1 回答
  • 0 关注
  • 649 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信