【发布时间】:2018-11-15 16:35:34
【问题描述】:
我需要将 [chat] header bot 的名称更改为 Askme。 我可以知道如何在 Microsoft bot 中更改它吗? 图片已附上
【问题讨论】:
-
到目前为止您尝试过什么?我们如何知道您使用的是哪种产品?
-
你是如何实现网络聊天控制台的?如果您不提供信息,我们将无法为您提供帮助
标签: botframework bots
我需要将 [chat] header bot 的名称更改为 Askme。 我可以知道如何在 Microsoft bot 中更改它吗? 图片已附上
【问题讨论】:
标签: botframework bots
如果您不使用 iframe 的网络聊天,您可以像这样修改标题的 .innerHTML:
var header = document.getElementsByClassName("wc-header");
header[0].innerHTML = "<span>Askme</span>"
【讨论】:
或者,如果您想在初始化时设置它并且使用Botchat.App() 设置而不是 iframe 版本的 webchat,您可以在发送到 webchat 的参数对象中设置它:
BotChat.App({
botConnection: botConnection,
user: { id: '1234', name: 'user'},
bot: { id: 'bot' },
chatTitle: "I'm a custom chat title"
}, document.getElementById("bot"));
本例中的关键参数为chatTitle;其他可以发送到网络聊天的选项可以在源代码right here中找到。
【讨论】: