【问题标题】:How to enable typingIndicator in bot-framework webchat?如何在机器人框架网络聊天中启用 typingIndicator? 【发布时间】:2020-02-11 12:13:47 【问题描述】: 我想在机器人发送响应时实现Typing indicator,它们的功能是否已经在机器人框架网络聊天中实现?如果可以,请指导我在我的代码中包含哪些内容? 【问题讨论】: 这能回答你的问题吗? Send a typing indicator in bot-framework v4 using DirectLine and webchat (Node.js) 标签: botframework 【解决方案1】: Webchat 已设置为呈现打字指示符。您必须将打字中间件添加到您的机器人代码中。 https://github.com/microsoft/botbuilder-js/blob/master/libraries/botbuilder-core/src/showTypingMiddleware.ts https://github.com/microsoft/botbuilder-dotnet/blob/master/libraries/Microsoft.Bot.Builder/ShowTypingMiddleware.cs 【讨论】: