有没有办法删除网络聊天中的文件附加图标?
is there a way to remove the file attach icon in webchat?
我正在寻找一种方法来删除图片中突出显示的这个图标。
Additional information:
using webchat 4.8
implementing in an angular project.
是的,你可以在styleOptions
中传入hideUploadButton: true
。然后将它传递给 Web Chat 渲染器。有关 styleOptions
参数的完整列表,请参考 this 文件。
const styleOptions = {
hideUploadButton: true,
}
[ ... ]
window.WebChat.renderWebChat(
{
directLine: window.WebChat.createDirectLine( {
token: token
} ),
styleOptions: styleOptions
document.getElementById( 'webchat' )
);
希望得到帮助!
我正在寻找一种方法来删除图片中突出显示的这个图标。
Additional information:
using webchat 4.8
implementing in an angular project.
是的,你可以在styleOptions
中传入hideUploadButton: true
。然后将它传递给 Web Chat 渲染器。有关 styleOptions
参数的完整列表,请参考 this 文件。
const styleOptions = {
hideUploadButton: true,
}
[ ... ]
window.WebChat.renderWebChat(
{
directLine: window.WebChat.createDirectLine( {
token: token
} ),
styleOptions: styleOptions
document.getElementById( 'webchat' )
);
希望得到帮助!