在使用["Daniel","Lucas","Gwen","Henry","Jasper"]
或CommandDialog
或以其他方式改变主意时,我正试图找到退出back
对话框的方法。
cancel
答案 0 :(得分:0)
要退出对话框,CommandDialog或其他,请在调用triggerAction
的对话框处理程序上使用session.endConversation()
。
例如,这是一个exit
对话框,当用户发送消息exit
或quit
时,该对话框会结束对话。
bot.dialog('exit', function (session) {
session.endConversation('Goodbye!');
}).triggerAction({ matches: /(quit|exit)/i });