用户退出CommandDialog

时间:2016-05-13 19:28:54

标签: node.js botframework

在使用["Daniel","Lucas","Gwen","Henry","Jasper"] CommandDialog或以其他方式改变主意时,我正试图找到退出back对话框的方法。

cancel

1 个答案:

答案 0 :(得分:0)

要退出对话框,CommandDialog或其他,请在调用triggerAction的对话框处理程序上使用session.endConversation()

例如,这是一个exit对话框,当用户发送消息exitquit时,该对话框会结束对话。

bot.dialog('exit', function (session) {
    session.endConversation('Goodbye!');
}).triggerAction({ matches: /(quit|exit)/i });