const message = {
uid: currentUID,
text: 'メッセージ本文',
time: firebase.database.ServerValue.TIMESTAMP,
};
firebase
.database()
.ref(messages/${currentRoomName}
)
.push(message);
これを参考にメッセージが投稿されるようにするにはどう書いたらいいか教えてください。
$('#comment-form').on('submit', (e) => {
const commentForm = $('#comment-form__text');
const comment = commentForm.val();
e.preventDefault();
if (comment === '') {
return;
}
commentForm.val('');
// TODO: メッセージを投稿する
firebase
.database()
.ref(comment-form
)
.push(comment)
});
ToDoメッセージを投稿するところを書きましたが、指摘お願いします。
あなたの回答
tips
プレビュー