我使用节点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-09 14:36:02
https://stackoverflow.com/questions/44459325
复制相似问题