js时间戳转日期

2023-02-18 1,568 0

将时间戳格式化后展示:

/**
* [formatDateTime 时间戳转年月日 时分秒]
* @param  {[type]}  int [时间戳]
* @param  {[type]}  str [时间格式,格式如下]
* 时间格式,[y-m-d h:i:s , y-m-d , h:i:s , ymdhis , y-m , m-d , y年m月d日 , y年m月 , m月d日 , y年m月d日 h时i分s秒 , h时i分s秒]
* @param  {Boolean} bol [默认为 true ,表示 10以下前面补零]
* @return {[type]}      [返回对应格式的日期时间格式]
*/
function formatDateTime(int, str, bol = true) {
    let date = new Date(int);
    let year = date.getFullYear();
    let month = date.getMonth() + 1;
    let day = date.getDate();
    let hours = date.getHours();
    let minutes = date.getMinutes();
    let seconds = date.getSeconds();
    if (bol) {
        month = month < 10 ? '0' + month : month
	day = day < 10 ? '0' + day : day
	hours = hours < 10 ? '0' + hours : hours
	minutes = minutes < 10 ? '0' + minutes : minutes
	seconds = seconds < 10 ? '0' + seconds : seconds
    }
    let strtoLowerCase = str.toLowerCase(); //把传入的转换成小写

    switch (strtoLowerCase) {
	case 'y-m-d h:i:s':
	    return year + '-' + month + '-' + day + ' ' + hours + ':' + minutes + ':' + seconds;
	    break;
	case 'ymdhis':
	    return year + '' + month + '' + day + '' + hours + '' + minutes + '' + seconds;
	    break;
	case 'y-m-d':
	    return year + '-' + month + '-' + day;
	    break;
	case 'y-m':
	    return year + '-' + month;
	    break;
	case 'm-d':
	    return month + '-' + day;
	    break;
	case 'ymd':
	    return year + '' + month + '' + day;
	    break;
	case 'h:i:s':
	    return hours + ':' + minutes + ':' + seconds;
	    break;
	case 'his':
	    return hours + '' + minutes + '' + seconds;
	    break;
	case 'y年m月d日 h时i分s秒':
	    return year + '年' + month + '月' + day + '日' + ' ' + hours + '时' + minutes + '分' + seconds + '秒';
	    break;
	case 'y年m月d日':
	    return year + '年' + month + '月' + day + '日';
	    break;
	case 'h时i分s秒':
	    return hours + '时' + minutes + '分' + seconds + '秒';
	    break;
	case 'y年m月':
	    return year + '年' + month + '月';
	    break;
	case 'm月d日':
	    return month + '月' + day + '日';
	    break;
    }
}
console.log("时间戳: "+new Date());

console.log("转换结果: "+formatDateTime(new Date(), 'y-m-d', bol = true))

相关文章

JavaScript数组去重
JavaScript 数组方法(三)
JavaScript 数组方法(二)
JavaScript 数组方法(一)
JS身份证精确校验
前端js实现打包下载文件

发布评论