vue時間格式總結以及轉換方法詳解
前言
vue框架中我們常常用el-date-picker標簽來顯示和選擇時間,那麼,常見的時間的格式包含年-月-日(yyyy-MM-dd)、年-月-日 時-分-秒(yyyy-MM-dd HH-mm-ss)、標準時間格式以及時間戳。那麼今天我們就來總結一下常用的獲取方法和它們之間的轉換方法。
一、獲取當前時間
先看效果:
Ⅰ. 格式:年-月-日 時-分-秒(yyyy-MM-dd HH-mm-ss)
<template> <div> <h1>vue 時間格式常見應用</h1> <h3>獲取當前時間(格式:年月日時分秒):{{time}}</h3> </div> </template> <script> export default { data() { return { time:'' } }, created() { this.getNowTime(); }, methods: { getNowTime(){ const yy = new Date().getFullYear() const MM = (new Date().getMonth() + 1) < 10 ? '0' + (new Date().getMonth() + 1) : (new Date().getMonth() + 1) const dd = new Date().getDate() < 10 ? '0' + new Date().getDate() : new Date().getDate() const HH = new Date().getHours() < 10 ? '0' + new Date().getHours() : new Date().getHours() const mm = new Date().getMinutes() < 10 ? '0' + new Date().getMinutes() : new Date().getMinutes() const ss = new Date().getSeconds() < 10 ? '0' + new Date().getSeconds() : new Date().getSeconds() this.time = yy + '-' + MM + '-' + dd + ' ' + HH + ':' + mm + ':' + ss; } } } </script>
Ⅱ.格式:標準時間
<template> <div> <h1>vue 時間格式常見應用</h1> <h3>獲取當前標準時間(格式:年月日時分秒):{{standard_time}}</h3> </div> </template> <script> export default { data() { return { standard_time:'' } }, created() { this.getGMTtime(); }, methods: { getGMTtime(){ this.standard_time =new Date(); } } } </script>
Ⅲ.格式:時間戳
<template> <div> <h1>vue 時間格式常見應用</h1> <h3>獲取當前時間的時間戳:{{current_timestamp}}</h3> </div> </template> <script> export default { data() { return { current_timestamp:'' } }, created() { this.getnowtimestamp(); }, methods: { getnowtimestamp(){ var date = new Date(); this.current_timestamp = Date.parse(date) } } } </script>
二、時間格式之間的轉換
效果:
Ⅰ.年-月-日 時-分-秒格式轉換成標準時間
<template> <h1>時間格式之間的轉換</h1> <h3>1.年月日時分秒格式轉換成標準時間</h3> <div style="display: flex;"> <h5>假如將"2022-08-17 09:54:48"轉換成標準時間格式,則標準格式為:</h5> <h4>{{conversion_time}}</h4> </div> </template> <script> export default { data() { return { conversion_time: new Date('2022-08-17 09:54:48') } } } </script>
Ⅱ.標準時間轉換成年-月-日 時-分-秒格式
<template> <h1>時間格式之間的轉換</h1> <h3>2.標準時間轉換成年月日時分秒格式</h3> <div style="display: flex;"> <h5>假如將"Wed Aug 17 2022 09:54:48 GMT+0800 (中國標準時間)"轉換成年月日時分秒格式,則 寫為:</h5> <h4>{{conversion_time1}}</h4> </div> </template> <script> export default { data() { return { conversion_time1:'', } }, created() { this.gettime(); }, methods: { gettime(){ var date = new Date('Wed Aug 17 2022 09:54:48 GMT+0800 (中國標準時間)'); var y = date.getFullYear(); var m = date.getMonth() + 1; m = m < 10 ? ('0' + m) : m; var d = date.getDate(); d = d < 10 ? ('0' + d) : d; var h = date.getHours(); h = h < 10 ? ('0' + h) : h; var min = date.getMinutes(); min = min < 10 ? ('0' + min) : min; var s = date.getSeconds(); s = s < 10 ? ('0' + s) : s; this.conversion_time1 = y + '-' + m + '-' + d + ' ' + h + ':' + min + ':' + s; } } } </script>
Ⅲ.年-月-日 時-分-秒格式轉換成時間戳
<template> <h3>3.年月日時分秒格式轉換成時間戳</h3> <div style="display: flex;"> <h5>假如將"2022-08-17 09:54:48"轉換成時間戳,則寫為:</h5> <h4>{{conversion_time2}}</h4> </div> </template> <script> export default { data() { return { conversion_time2:Date.parse('2022-08-17 09:54:48') } } } </script>
這時你是不是有點困惑怎麼來判斷轉換的時間戳是否正確呢,我們可以通過在線的轉換工具來轉換檢測,轉換工具網址:時間戳(Unix timestamp)轉換工具 – 在線工具
那下面我們來檢測一下:
所以轉換的是沒有問題的!
補充:vue中將任意格式的日期轉換為年月日形式(yyyy-MM-dd)
time.js
export const formatDateTime = () => { let date = new Date(); let timeStr = date.getFullYear() + '-'; timeStr += date.getMonth() + 1 + '-'; timeStr += date.getDate(); return timeStr; }
頁面中使用
import { formatDateTime } from './time' mounted() { console.log('當前時間:'+ formatDateTime(new Date().getTime())) }
總結
到此這篇關於vue時間格式總結以及轉換的文章就介紹到這瞭,更多相關vue時間格式轉換內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!