1. 程式人生 > 其它 >vuejs專案中,實現類似時鐘的實時計時器

vuejs專案中,實現類似時鐘的實時計時器

百度查了很多實現計時器的方法,這種方式實現計時器是比較穩定的好的方式。

原作者部落格地址:https://blog.csdn.net/qq_40146789/article/details/109357665?utm_medium=distribute.pc_relevant.none-task-blog-2%7Edefault%7EBlogCommendFromBaidu%7Edefault-7.control&depth_1-utm_source=distribute.pc_relevant.none-task-blog-2%7Edefault%7EBlogCommendFromBaidu%7Edefault-7.control

<template>
  <div id="app">開始時間:{{ start_time }} 用時:{{ count_time }}</div>
</template>

<script>
export default {
  name: 'App',
  data() {
    return {
      start_time: '2021-07-19 14:00:00',
      count_time: '00:00:00'
    }
  },
  mounted() {
    this.countTime(this.start_time)
  },
  beforeDestroy() {
    
if (this.timer) { clearInterval(this.timer) } }, methods: { // 計算用時 startTime為開始時間 字串格式‘2020-10-29 14:00:00’或者Date格式都可以 countTime(startTime) { if (!startTime) return let start_time = new Date(startTime) let _this = this this.timer = setInterval(() => { let millisecond
= new Date() - start_time let h = Math.floor(millisecond / (60 * 60 * 1000)) h = h < 10 ? '0' + h : h let min = Math.floor((millisecond % (60 * 60 * 1000)) / (60 * 1000)) min = min < 10 ? '0' + min : min let sec = Math.floor(((millisecond % (60 * 60 * 1000)) % (60 * 1000)) / 1000) sec = sec < 10 ? '0' + sec : sec _this.count_time = h + ':' + min + ':' + sec }, 1000) } } } </script>