我正在尝试使用slack botkit开发一个slack机器人,并且在尝试处理斜杠命令时遇到问题。 我使用的是从松弛botkit的支持松弛中获取的以下语法。
controller.hears('/tempo', 'slash_command', async (bot,message)=>{
console.log("here")
})
使用这种语法不起作用,但是另一方面,从脚手架生成的命令也可以工作。
controller.on('slash_command',async (bot, message) => {
console.log(message.command.split('/')[1])
})
我在这里想念什么?