Telegraf:发送动画后发送消息

时间:2020-04-11 19:08:37

标签: javascript node.js telegram-bot telegraf

我需要在电报漫游器中发送gif文件,然后发送消息,但仅在发送gif文件之后。

bot.telegram.sendAnimation(ctx.chat.id,
    {source : 'path/to/gif/file'}
);
ctx.reply('This is the message text');

使用上述代码,它会在文件之前发送消息(可能是由于互联网速度较慢)。

如何首先发送文件?

1 个答案:

答案 0 :(得分:0)

您需要通过await / sendAnimationasync await进行.then()的呼叫,因为这是一个承诺。