我参考了 beepbophq 教程。他们展示了如何将 slackbot 与 wit.ai 集成以使其更智能。我面临的问题在于 js 文件的代码。wit.hears() 行给了我一个错误,即“听到”方法是没有找到。但是在教程中它被使用了。我已经导入了 witbot 和 botkit 库。请为我提供解决方案谢谢提前
问问题
111 次
1 回答
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”部分。我希望你能弄清楚那部分。
于 2017-03-09T11:56:17.430 回答