Vue按格式 实时获取当前时间并显示
作者:互联网
<template> <div>{{ nowDate }}</div> </template> <script> export default { data() { return { nowDate: "", // 当前日期 }; }, methods: { currentTime() { setInterval(this.formatDate, 500); }, formatDate() { let date = new Date(); let year = date.getFullYear(); // 年 let month = date.getMonth() + 1; // 月 let day = date.getDate(); // 日 let week = date.getDay(); // 星期 let weekArr = ["星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六"]; let hour = date.getHours(); // 时 hour = hour < 10 ? "0" + hour : hour; // 如果只有一位,则前面补零 let minute = date.getMinutes(); // 分 minute = minute < 10 ? "0" + minute : minute; // 如果只有一位,则前面补零 let second = date.getSeconds(); // 秒 second = second < 10 ? "0" + second : second; // 如果只有一位,则前面补零 this.nowDate = `${year}/${month}/${day} ${hour}:${minute}:${second} ${weekArr[week]}`; //根据自己需要拼接 } }, mounted() { this.currentTime(); }, // 销毁定时器 beforeDestroy() { if (this.formatDate) { clearInterval(this.formatDate); // 在Vue实例销毁前,清除时间定时器 } } }; </script>
也可以用watch去监听nowDate的变化。
https://www.jianshu.com/p/969c28db61ef
标签:Vue,hour,实时,second,nowDate,let,date,格式,minute 来源: https://www.cnblogs.com/zmh-980509/p/15522846.html