我需要捕获编辑过的消息。我尝试过:
bot.on("edited.message", ctx =>
{
console.log("edited")
});
bot.on("update", ctx =>
{
console.log("edited")
});
但是它不起作用。有什么想法吗?
答案 0 :(得分:0)
尝试使用此代码:
bot.on('edited_message', (ctx) => {
console.log(ctx.update.edited_message);
});
您可以在文档中找到的所有可用类型:
https://telegraf.js.org/#/?id=update-types