格式化日期

例如

console.log(formatDate(new Date(),'yyyy'));
console.log(formatDate(new Date(),'yyyyMMdd'));
console.log(formatDate(new Date(),'yyyy-MM-dd hh:mm:ss'));

输出:

2022
20220530
2022-05-30 12:57:50

代码实现如下:

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)
}
更新日期:
作者: qwding, 丁乾文