【React】格式化中国标准时间

发布时间 2023-05-17 13:25:02作者: 维多利亚的巴黎世家
//定义格式化函数:
handleTime(time, format) {
    if (time == null || time == undefined || time == "") {
        return "";
    }
    var t = new Date(time);
    var tf = function (i) {
        return (i < 10 ? '0' : '') + i
    };
    return format.replace(/yyyy|MM|dd|HH|mm|ss/g, function (a) {
        switch (a) {
            case 'yyyy':
                return tf(t.getFullYear());
                break;
            case 'MM':
                return tf(t.getMonth() + 1);
                break;
            case 'mm':
                return tf(t.getMinutes());
                break;
            case 'dd':
                return tf(t.getDate());
                break;
            case 'HH':
                return tf(t.getHours());
                break;
            case 'ss':
                return tf(t.getSeconds());
                break;
        }
    })
},
//调用函数
handleTime(timeRange.range[0], "yyyy-MM-dd HH:mm:ss");