vue如何動態實時的顯示時間淺析
vue動態實時顯示時間有兩種方法
1.可以用day.js,處理日期和時間的js庫
用法 npm install dayjs --save
引入import dayjs from 'dayjs'
然後創建定時器更新最新的時間
this.timeId = setInterval(()=>{ this.sday =dayjs().format('YYYY-MM-DD HH:mm:ss'); }, 1000);
更多的詳情可以查看day.js的api
api文檔點這裡
2.使用vue過濾器filters
<template> <el-container id="box"> {{ date | formaDate }} </el-container> </template> <script> //創建一個函數來增加月日時小於10在前面加0 var padaDate = function(value){ return value<10 ? '0'+value : value; }; export default { data() { return { date: new Date(), //實時時間 }; }, watch: { }, computed: {}, filters:{ //設置一個函數來進行過濾 formaDate:function(value){ //創建一個時間日期對象 var date = new Date(); var year = date.getFullYear(); //存儲年 var month = padaDate(date.getMonth()+1); //存儲月份 var day = padaDate(date.getDate()); //存儲日期 var hours = padaDate(date.getHours()); //存儲時 var minutes = padaDate(date.getMinutes()); //存儲分 var seconds = padaDate(date.getSeconds()); //存儲秒 //返回格式化後的日期 return year+'年'+month+'月'+day+'日'+hours+'時'+minutes+'分'+seconds+'秒'; } }, methods: { }, created() { }, mounted() { //創建定時器更新最新的時間 var _this = this; this.timeId = setInterval(function() { _this.sday =dayjs().format('YYYY-MM-DD HH:mm:ss'); }, 1000); this.initmap(); }, beforeDestroy: function() { //實例銷毀前青出於定時器 if (this.timeId) { clearInterval(this.timeId); } } }; </script> <style lang="scss" scoped> </style>
附:vue時間戳 獲取本地時間,實時更新
<template> <p>當前時間:{{nowTime}}</p> </template> <script> export default{ data(){ return{ nowTime:"" } }, methods:{ getTime(){ setInterval(()=>{ //new Date() new一個data對象,當前日期和時間 //toLocaleString() 方法可根據本地時間把 Date 對象轉換為字符串,並返回結果。 this.nowtime = new Date().toLocaleString(); },1000) } }, created(){ this.getTime(); } } </script>
總結
到此這篇關於vue如何動態實時顯示時間的文章就介紹到這瞭,更多相關vue動態實時顯示時間內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!