作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
nodejs中bot框架的输入指示器
你好,
我正在使用 microsoft bot framework v4, node js,我需要在聊天机器人中实现输入。在发送原始响应之前,机器人应该响应 like(...) 作为响应。
我在这里看到了代码 Send a typing indicator in bot-framework v4 using DirectLine and webchat (Node.js)
代码在本地运行良好,但是当我将它部署到 azure 时,typing(...) 没有出现,我可以看到 azure 中的响应延迟了 3 秒。
我的代码
await step.context.sendActivities([
{ type: 'typing' },
{ type: 'delay', value: 3000 },
]);`
最佳答案
感谢您的帮助和建议。我改了 webSocket:真,在 chatter.html 的 botConnection 中并解决了我的目的。之前是 webSocket:false。
var botConnection = new BotChat.DirectLine({
secret: model.secret,
token: model.token,
domain: model.directLineUrl,
webSocket: true,
conversationId: getPersistedConversationId(),
watermark: 0
});
关于botframework - 在聊天机器人中输入指示符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58518661/
我是一名优秀的程序员,十分优秀!