#タイムスタンプ値を時間(例)xx:xxと秒数なしで変換させ表示させたいです。
Vue x Realtime Databaseにてタイムスタンプ値として取得しているものを以下のように
秒数ありの時間を表示するようにしておりますが、秒数はなしで時間を表示させたいです。
.getHours()と.getMinutes()と組み合わせたら表示できそうですが、記述方法がわからず行き詰まってしまっております。。
分かる方お力添えをいただけませんでしょうか。
よろしくお願いいたします
<div class="mytime">{{new Date(time).toLocaleTimeString("ja-JA")}}</div>
doSend() { const time = time; if (this.user.uid && this.input.length) { // firebaseに書き込まれたメッセージを追加 firebase .database() .ref(this.$route.params.id) .push( { message: this.input, name: this.user.displayName, image: this.user.photoURL, userid: this.user.uid, time: firebase.database.ServerValue.TIMESTAMP }, () => { this.input = ""; // フォームを空にする } ); console.log(time); } },
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/05/12 14:19
2021/05/13 02:49
2021/05/13 03:34