我需要在电报漫游器中发送gif文件,然后发送消息,但仅在发送gif文件之后。
bot.telegram.sendAnimation(ctx.chat.id,
{source : 'path/to/gif/file'}
);
ctx.reply('This is the message text');
使用上述代码,它会在文件之前发送消息(可能是由于互联网速度较慢)。
如何首先发送文件?
答案 0 :(得分:0)
您需要通过await
/ sendAnimation
或async
await
进行.then()
的呼叫,因为这是一个承诺。