我使用节点js,我想从一般对话框(“morningUpdate”)调用luis对话框(“work”)。
dialog.matches('morningUpdate',[
function (session, args, next) {
}
]);
bot.dialog('/work', [
function (session, args) {
//how to call here "morningUpdate" dialog
}
]);我们如何才能做到这一点。
发布于 2017-06-16 08:15:11
这是实际的答案
dialog.matches('morningUpdate', 'morningUpdate');
bot.dialog('morningUpdate', [
function (session, args, next) {
}
]);https://stackoverflow.com/questions/44459325
复制相似问题