日期格式轉(zhuǎn)換
JS:
date.js
//傳入?yún)?shù)日期和要轉(zhuǎn)換的格式
export function formatDate(date,fmt){
if(/(y+)/.test(fmt)){
fmt = fmt.replace(RegExp.$1, (date.getFullYear() + "").substr(4 - RegExp.$1.length));
}
let o={
"M+":date.getMonth()+1, "d+":date.getDate(), "h+":date.getHours(), "m+":date.getMinutes(), "s+":date.getSeconds()
};
for(let k in o){
if(new RegExp(`(${k})`).test(fmt)){ let str=o[k]+""; fmt = fmt.replace(RegExp.$1, (RegExp.$1.length === 1) ? str : padLeftZero(str)); }
}
return fmt;
}
function padLeftZero(str){
return ("00"+str).substr(str.length);
}
調(diào)用部分:
{{rating.rateTime | formatDate}}
filters :{ formatDate(time){ let date=new Date(time); return formateDate(date,"yyyy-MM-dd hh:mm"); } }
}
文章版權(quán)歸作者所有,未經(jīng)允許請(qǐng)勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。
轉(zhuǎn)載請(qǐng)注明本文地址:http://systransis.cn/yun/106583.html
摘要:最近在做的后臺(tái)管理頁(yè)面,其中用到了來(lái)選擇日期時(shí)間,但是在將數(shù)據(jù)傳回后臺(tái)的過(guò)程中遇到了一些令人頭疼的問(wèn)題,在此記錄一下解決方案,以免日后再次遇到。 最近在做vue+element-ui的后臺(tái)管理頁(yè)面,其中用到了DateTimePicker來(lái)選擇日期時(shí)間,但是在將數(shù)據(jù)傳回后臺(tái)的過(guò)程中遇到了一些令人頭疼的問(wèn)題,在此記錄一下解決方案,以免日后再次遇到。 showImg(https://segm...
摘要:獲取字符串中出現(xiàn)次數(shù)最多的字符。去掉字符串中的所有空格中對(duì)象數(shù)組按對(duì)象屬性排序 VUE 1、vue——解決You may use special comments to disable some warnings. Use // eslint-disable-next-line to ignore the next line. Use / eslint-disable / to ign...
摘要:獲取字符串中出現(xiàn)次數(shù)最多的字符。去掉字符串中的所有空格中對(duì)象數(shù)組按對(duì)象屬性排序 VUE 1、vue——解決You may use special comments to disable some warnings. Use // eslint-disable-next-line to ignore the next line. Use / eslint-disable / to ign...
摘要:時(shí)間轉(zhuǎn)時(shí)間戳當(dāng)前時(shí)間轉(zhuǎn)換毫秒指定時(shí)間轉(zhuǎn)換毫秒時(shí)間戳轉(zhuǎn)化為日期時(shí)間轉(zhuǎn)換格式時(shí)分秒時(shí)分秒時(shí)分時(shí)秒時(shí)分秒分秒時(shí)間轉(zhuǎn)換格式 時(shí)間轉(zhuǎn)時(shí)間戳 當(dāng)前時(shí)間轉(zhuǎn)換(毫秒) new Date().getTime() 指定時(shí)間轉(zhuǎn)換(毫秒) var timeDate = 2019-05-09 14:50:48; new Date(timeDate).getTime() 時(shí)間戳轉(zhuǎn)化為日期 時(shí)間轉(zhuǎn)換 --格式1時(shí)1...
閱讀 1010·2023-04-25 15:42
閱讀 3604·2021-11-02 14:38
閱讀 2896·2021-09-30 09:48
閱讀 1437·2021-09-23 11:22
閱讀 3399·2021-09-06 15:02
閱讀 3195·2021-09-04 16:41
閱讀 613·2021-09-02 15:41
閱讀 2025·2021-08-26 14:13