0

样本

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

附加信息:

使用网络聊天 4.8

在一个角度项目中实施。

4

1 回答 1

4

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

const styleOptions = {
  hideUploadButton: true,
}

[ ... ]

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

希望有帮助!

于 2020-06-03T08:40:12.077 回答