此函数是前辈留下的,不知具体从哪来的,暂且发布为原创,希望给大家带来便利
一、新建formatDate.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)
}
二、formatDate使用
import { formatDate } from '../../utils/formatDate';
// 监听页面加载
onLoad() {
let a = formatDate(new Date(), 'yyyy.MM.dd hh-mm:ss')
console.log(a) //2023.05.06 15-14:21
let b = formatDate(new Date(), 'yyyy-MM-dd hh:mm:ss')
console.log(b) //2023-05-06 15:24:43
},