我使用 Node.js 和 LUIS 通过“Azure 门户”创建了一个机器人服务。创建 Bot 后,我可以看到“聊天界面”永远加载并显示“正在加载聊天界面”消息。 机器人开发者界面
所以我通过“dev.botframework.com”中的“我的机器人”打开了 Bot 并测试了连接。它因以下错误而失败。 机器人聊天窗口
当我在那里的聊天框中输入“嗨”时,我可以在日志中看到错误“执行函数时出现异常:Functions.messages。mscorlib:错误:找不到模块“botbuilder”
我可以在“package.json”中看到“botbuildr”依赖项,如下所示。
{
"name": "luisbot",
"version": "1.0.0",
"description": "",
"main": "index.js",
"dependencies": {
"botbuilder": "^3.7.0",
"botbuilder-azure": "3.0.2"
},
"devDependencies": {
"restify": "^4.3.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC"
}
对错误有什么建议吗?