标签: node.js telegram telegram-bot
当用户向机器人发送一些消息以从telegraf-inline-menu打开菜单时,我需要运行电报命令。
telegraf-inline-menu
由于该库提供了在menu.setCommand('start')之类的某些命令上打开菜单的功能,所以我认为仅在bot.hears()上触发命令是合适的。
menu.setCommand('start')
bot.hears()
menuSetcommand('/test') bot.hears(someRegex, ctx => { triggerCommand('/test') })
如果无法做到这一点,将高度赞赏一些研究提示和指导!