首页 > 解决方案 > 有没有办法删除网络聊天中的文件附加图标?

问题描述

样本

我正在寻找一种方法来删除图片中突出显示的这个图标。

附加信息:

使用网络聊天 4.8

在一个角度项目中实施。

标签: botframeworkdirect-line-botframeworkweb-chat

解决方案


是的,您可以传入hideUploadButton: truein styleOptions。然后将其传递给网络聊天渲染器。有关styleOptions参数的完整列表,请参考文件。

const styleOptions = {
  hideUploadButton: true,
}

[ ... ]

window.WebChat.renderWebChat(
  {
    directLine: window.WebChat.createDirectLine( {
      token: token
    } ),
    styleOptions: styleOptions
  document.getElementById( 'webchat' )
);

希望有帮助!


推荐阅读