私は作成したチャットボットを作成してユーザーのユーザー名を要求し、それを変数として保存します。しかし、私のダイアログツリーの1つでは、ユーザーに別の回答を入力するように依頼する必要があります。ユーザーがボタンをクリックしてナビゲートできるようにしています。入力メソッドを切り替える模擬チャットボット?
ユーザー名のキャプチャでは、「入力バー」がコントロールから削除され、各メッセージ機能とともにボタンが追加されます。私はこれを逆にしようとしましたが(ボタンを削除して入力を追加すると動作しますが)、何かをするために自分の入力を得ることはできません。それは入力時に提出されません、それは変数を保存しませんし、私の試行錯誤で、私はそのmsg値からvarを設定しようとすると、それはユーザー名を更新することがわかりました。ここで
は、ここで名前
function get_username() {
send_msg("Hello I'm Mumbles, the Help Bot", function(){
send_msg("Who am I speaking with today?")
});
}
function ai(msg) {
if (username.length < 3) {
username = msg;
send_msg("Nice to meet you"+username+". What are you working on today?" , function() {
$("#controls").append(
'<button class="options one" value="my_certifications" type="button">My Certifications</button>' +
'<button class="options one" value="videos"type="button">Videos</butto/>' +
'<button class="options one" value="login"type="button">Login</butto/>' +
'<button class="options one" value="other"type="button">Other</butto/>'
);
});
}
// Remove text bar
$("#controls").empty();
};
を取得するために私の関数である私の機能を使用すると、この動作を確認したい場合は
} else if (b_val == "my_practicum") {
send_msg("What is the email address you submitted your practicum with? By having this we can give you a status update!" , function() {
$("#controls").append(
'<textarea id="message" class="practicum-bar" placeholder="Type Your Name - Then Hit Enter"></textarea><button style="display:none;" id="sendMsg">Send</button>' );
email = msg;
console.log(email);
});
}
}
メールをしようとしてキャプチャすることです、ここで私のJSFiddle。あなたは>認定>マイ実習>メール
を入力し、この上の任意のヘルプは高く評価されている名前を入力し、このユーザーのパス
を経て、それを見ることができます!ありがとう!
メールを入力した後に何をしたいですか? –
@jackblank API関数を実行している間、フォローアップの質問をします(まだ例には載っていません)。私はそれを変数として格納することができればいいだけです –