我正在寻找一种方法来删除图片中突出显示的这个图标。
附加信息:
使用网络聊天 4.8
在一个角度项目中实施。
是的,您可以传入hideUploadButton: truein styleOptions。然后将其传递给网络聊天渲染器。有关styleOptions参数的完整列表,请参考此文件。
const styleOptions = {
hideUploadButton: true,
}
[ ... ]
window.WebChat.renderWebChat(
{
directLine: window.WebChat.createDirectLine( {
token: token
} ),
styleOptions: styleOptions
document.getElementById( 'webchat' )
);
希望有帮助!