【发布时间】:2021-12-20 16:57:57
【问题描述】:
我在用户登录后从 webChatService 调用 initWebchat,但我也想在用户注销后删除 webChatIcon,现在用户注销后 webChat 图标仍然显示这是我创建的服务
`声明 const initWebchat: any;
export class WebChatService {enter code here
constructor(private readonly $sessionStorage: SessionStorageService) {}
initWebchat() {
initWebchat('https://endpoint-trial.cognigy.ai/xxxx', {
sessionId: "'" + this.$sessionStorage.retrieve('sessionID') + "'",
settings: {
title: 'Test Title',
inputPlaceholder: 'Please reply here',
getStartedText: 'Hello Faii',
},
}).then((webchat) => {
webchat.registerAnalyticsService((event) => {
....
}`
【问题讨论】: