Unexpected `await` inside a loop. (no-await-in-loop)

后端 未结 2 1007
生来不讨喜
生来不讨喜 2020-12-09 14:40

How Should I await for bot.sendMessage() inside of loop?
Maybe I Need await Promise.all But I Don\'t Know How Should I add to bot.sendM

2条回答
  •  感情败类
    2020-12-09 15:22

    Performing await inside loops can be avoided once iterations doesn't have dependency in most cases, that's why eslint is warning it here

    You can rewrite your code as:

    const promise = query.exec();
      promise.then(async (doc) => {
        await Promise.all(Object.values(doc).map((val, idx) => bot.sendMessage(msg.chat.id, `

提交回复
热议问题