Botui#
GitHub - botui/botui: 🤖 A JavaScript framework to create conversational UIs
設定#
公式の GitHub ドキュメントを参考に、halo ブログの解決策を提供し、デモの効果とコードを末尾に記載します。
<head>
の設定#
【バックエンド - システム - その他の設定 - カスタムコンテンツページの head】
<link rel="stylesheet" href="https://unpkg.com/botui/build/botui.min.css" />
<link rel="stylesheet" href="https:/unpkg.com/botui/build/botui-theme-default.css" />
コンテンツページの設定#
以下のようにコンテンツページに入力すると適用されます。
<div class="botui-app-container" id="example"><!-- id要对应 -->
<bot-ui></bot-ui>
</div>
<script src="https://cdn.jsdelivr.net/vue/2.0.5/vue.min.js"></script>
<script src="https://unpkg.com/botui/build/botui.js"></script>
<script src="/themes/source/botui/example.js"><!-- 交互js文件位置 -->//
</script>
交互 js ファイルの位置は、自分で変更してください。更新時に誤って削除されないように、定期的にバックアップを作成してください。
交互 js ドキュメント#
次に、js のインタラクティブファイルを設定しますが、これには一定のコーディングの基礎が必要です。以下を参考にしてください:
公式ドキュメントhttps://docs.botui.org/
Github の例https://github.com/botui/botui-examples
バグ#
ボタンをクリックするなどの場合、ページがめくれることがあります。
プレビュー#
表示されない場合は、ページをリフレッシュしてください。
example1
//example1
var botui = new BotUI('example1');//name要与id对应
botui.message.add({
content: 'Hello World from bot!'
});
botui.message.add({
human: true,
content: 'Hello World from human!'
});
example2
//info
var botui = new BotUI('info');
botui.message.add({
content: '!'
});
botui.message
.bot({
delay: 1000,
content: 'Hi, 你好呀!'
}).then(function () {
return botui.action.button({
delay: 1000,
action: [{
text: 'Hi',
value: 'hi'
},{
text: '......',
value: 'no_reply'
}]
})
}).then(function (res) {
if(res.value == 'hi') {
showReminderInput();
} else {
botui.message.bot('屁颠屁颠逃走了');
}
});
var showReminderInput = function () {
botui.message
.bot({
delay: 500,
content: '我叫Lil Troy,你叫什么呀?'
}).then(function () {
return botui.action.text({
delay: 3000,
action:{
placeholder:'键入你的名字'
}
})
}).then(function (user_name){
botui.message
.bot({
delay: 500,
content: '你好呀,' + user_name.value +'。感谢你来看我!'
});
})
}