2016-08-21 111 views
0

我已經提到了beepbophq教程。在這裏,他們展示瞭如何將slackbot和wit.ai結合起來,使它更加智能。我面臨的問題在於js文件的代碼。wit.hears()的行給我一個'聽到'方法的錯誤是沒有找到。但在教程中使用它。我已經導入witbot和botkit庫。 請提供我解決方案 感謝提前Slackbot與wit.ai集成的問題

回答

0

我有同樣的問題。我喜歡下面已經解決它:

this.controller.hears('', ['direct_message', 'direct_mention'], function (bot, message) { 
       var wit = witbot.process(message.text, bot, message); 
       wit.hears('hello', 0.5, function (bot, message, outcome) { 
        console.log('MESSAGE: ' + message); 
        console.log('OUTCOME: ' + outcome); 
        bot.reply(message, 'Hello to you as well!') 
       }); 
      }); 

但問題是,它從來沒有執行「bot.reply」的一部分。我希望你能弄清楚那一部分。