Vue实现获取当前时间、日期并实时刷新

效果:

1821903-20191116151018132-519909872.png

源码:

<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>

转自:https://www.cnblogs.com/x-llin/p/11871893.html

    标签: Vue

    Danzel
    Danzel管理员

    • 声明:本文由Danzel于2021-05-26转载(优化),转载须经原站同意并注明出处。
    • 本文地址:http://maryd.cn/?id=175
    上一篇:Dynamics ax 2012 find account structures for particular main account
    下一篇:Dynamics ax 2012 获取物料单位

    留言评论

    暂无留言
    取消
    扫码支持