1、时间戳转时间,可以进行时间格式化
function padLeftZero(str) {
return ('00' + str).substr(str.length);
}
function formatDate(timeStrap, fmt) {
const date = new Date(timeStrap)
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)) {
// console.log(`${k}`)
// console.log(RegExp.$1)
let str = o[k] + '';
fmt = fmt.replace(RegExp.$1, (RegExp.$1.length === 1) ? str : padLeftZero(str));
}
}
return fmt;
};
//注意时间戳传Int类型而不是String类型
const time_str = formatDate(1619776848000,'yyyy-MM-dd hh:mm')
console.log(time_str);
网友评论