日期格式转换
JS:
date.js
//传入参数日期和要转换的格式
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);
}
调用部分:
{{rating.rateTime | formatDate}}
filters :{ formatDate(time){ let date=new Date(time); return formateDate(date,"yyyy-MM-dd hh:mm"); } }
}
文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。
转载请注明本文地址:https://www.ucloud.cn/yun/106583.html
摘要:最近在做的后台管理页面,其中用到了来选择日期时间,但是在将数据传回后台的过程中遇到了一些令人头疼的问题,在此记录一下解决方案,以免日后再次遇到。 最近在做vue+element-ui的后台管理页面,其中用到了DateTimePicker来选择日期时间,但是在将数据传回后台的过程中遇到了一些令人头疼的问题,在此记录一下解决方案,以免日后再次遇到。 showImg(https://segm...
摘要:获取字符串中出现次数最多的字符。去掉字符串中的所有空格中对象数组按对象属性排序 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...
摘要:获取字符串中出现次数最多的字符。去掉字符串中的所有空格中对象数组按对象属性排序 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...
摘要:时间转时间戳当前时间转换毫秒指定时间转换毫秒时间戳转化为日期时间转换格式时分秒时分秒时分时秒时分秒分秒时间转换格式 时间转时间戳 当前时间转换(毫秒) new Date().getTime() 指定时间转换(毫秒) var timeDate = 2019-05-09 14:50:48; new Date(timeDate).getTime() 时间戳转化为日期 时间转换 --格式1时1...
阅读 956·2023-04-25 15:42
阅读 3566·2021-11-02 14:38
阅读 2875·2021-09-30 09:48
阅读 1397·2021-09-23 11:22
阅读 3362·2021-09-06 15:02
阅读 3174·2021-09-04 16:41
阅读 594·2021-09-02 15:41
阅读 1994·2021-08-26 14:13