我正在使用BotFramework-WebChat从网页创建与我的机器人的直接线路连接,并且我希望在对话开始时弹出聊天。
我有这段代码的一些变体:
<!DOCTYPE html>
<html>
<head>
<link href="https://unpkg.com/botframework-webchat/botchat.css"
rel="stylesheet" />
</head>
<body>
<div id="bot"/>
<script src="https://unpkg.com/botframework-webchat/botchat.js">
</script>
<script>
BotChat.App({
directLine: { secret: direct_line_secret },
user: { id: 'userid' },
bot: { id: 'botid' },
resize: 'detect'
}, document.getElementById("bot"));
</script>
</body>
</html>
现在,当机器人尝试连接时出现错误,我想抓住它而不显示聊天框。
当对话成功连接或出现错误时,有没有办法让我触发回调?