天蓝色聊天机器人的前端源文件在哪里?
Where is frontend source file located of azure chat bot?
我想对我的机器人做一些小改动 UI。
我没有创建一个完整的 UI。微软给出的 UI 上的标记很少,所以想知道
where is the viewfile/frontend file/htmlfile of azure bot is located
in source code ?
currently im using bot with integrating web chat link to .
我试过在 Build>Download bot sourcecode 中找到它
但是我不能。
<div id="webchat" role="main" class="sizingSt">
</div>
</div>
<script src="https://cdn.botframework.com/botframework-webchat/latest/webchat.js"></script>
<script>
window.WebChat.renderWebChat(
{
directLine: window.WebChat.createDirectLine({
secret: '*****************************************************'
}),
},
document.getElementById('webchat')
);
</script>
我假设您想知道 "Test in WebChat" 代码的来源。基本上它来自 WebChat. There are a lot of samples,您可以使用它来将其集成到您的机器人中。
如果您需要集成方面的帮助:
WebChat repo 也有很好的 "How to Use" section
如果您 运行 遇到问题,请用您尝试过的方法和任何相关代码更新您的问题。然后回复这个答案,我可以提供额外的帮助。
我想对我的机器人做一些小改动 UI。 我没有创建一个完整的 UI。微软给出的 UI 上的标记很少,所以想知道
where is the viewfile/frontend file/htmlfile of azure bot is located in source code ?
currently im using bot with integrating web chat link to .
我试过在 Build>Download bot sourcecode 中找到它 但是我不能。
<div id="webchat" role="main" class="sizingSt">
</div>
</div>
<script src="https://cdn.botframework.com/botframework-webchat/latest/webchat.js"></script>
<script>
window.WebChat.renderWebChat(
{
directLine: window.WebChat.createDirectLine({
secret: '*****************************************************'
}),
},
document.getElementById('webchat')
);
</script>
我假设您想知道 "Test in WebChat" 代码的来源。基本上它来自 WebChat. There are a lot of samples,您可以使用它来将其集成到您的机器人中。
如果您需要集成方面的帮助:
WebChat repo 也有很好的 "How to Use" section
如果您 运行 遇到问题,请用您尝试过的方法和任何相关代码更新您的问题。然后回复这个答案,我可以提供额外的帮助。