文章目录
-
-
-
- 一、格式化时间(年月日时分秒)
- 二、格式化时间(年月日)
- 三、日期格式化(获取年份)
- 四、格式化时间(月日)
- 五、格式化时间(时分秒)
- [六、秒 转换为 分秒](#六、秒 转换为 分秒)
-
-
一、格式化时间(年月日时分秒)
javascript
/**
* 日期时间格式化 年月日时分秒
* @param {string} dateTime
*/
export function dateTimeFormatting(dateTime) {
if (dateTime.toString().length == 10) {
dateTime = dateTime * 1000
}
let date = new Date(dateTime || '')
return date.getFullYear() + '-' + (date.getMonth() + 1 < 10 ? '0' + (date.getMonth() + 1) : date.getMonth() + 1) +
'-' + (date.getDate() < 10 ? '0' + date.getDate() : date.getDate()) + ' ' +
(date.getHours() < 10 ? '0' + date.getHours() : date.getHours()) + ':' + (date.getMinutes() < 10 ? '0' + date
.getMinutes() : date.getMinutes()) + ':' + (date.getSeconds() < 10 ? '0' + date.getSeconds() : date.getSeconds())
}
// 使用
// dateTimeFormatting(new Date());
// dateTimeFormatting(1719477463); // 2024-06-27 16:37:43
// dateTimeFormatting(1719477463000); // 2024-06-27 16:37:43
二、格式化时间(年月日)
javascript
/**
* 日期格式化 年月日
* @param {*} dateTime
*/
export function dateFormatting(dateTime, symbol) {
let date = new Date(dateTime || '')
let symbols = symbol || '-'
return date.getFullYear() + (symbols == 'character' ? '年' : symbols) + (date.getMonth() + 1 < 10 ? '0' + (date
.getMonth() + 1) : date.getMonth() + 1) + (symbols == 'character' ? '月' : symbols) +
(date.getDate() < 10 ? '0' + date.getDate() : date.getDate()) + (symbols == 'character' ? '日' : '')
}
// 使用
// dateFormatting(new Date());
// dateFormatting(1719477463); // 2024-06-27
// dateFormatting(1719477463000); // 2024-06-27
三、日期格式化(获取年份)
javascript
/**
* 日期格式化 获取年份
* @param {*} dateTime
*/
export function getYear(dateTime) {
let date = new Date(dateTime || '')
return date.getFullYear()
}
// 使用
// getYear(new Date());
// getYear(1719477463); // 2024
// getYear(1719477463000); // 2024
四、格式化时间(月日)
javascript
/**
* 日期格式化 月日格式化
* @param {*} dateTime
*/
export function monthDayFormatting(dateTime, symbol) {
let date = new Date(dateTime || '')
let symbols = symbol || '-'
return (date.getMonth() + 1 < 10 ? '0' + (date.getMonth() + 1) : date.getMonth() + 1) + (symbols == 'character' ?
'月' : symbols) + (date.getDate() < 10 ? '0' + date.getDate() : date.getDate()) + (symbols == 'character' ? '日' :
'')
}
// 使用
// monthDayFormatting(new Date());
// monthDayFormatting(1719477463); // 06-27
// monthDayFormatting(1719477463000); // 06-27
五、格式化时间(时分秒)
javascript
/**
* 时间格式化 时分秒
* @param {string} dateTime
* @returns {string}
*/
export function timeFormatting(dateTime) {
let date = new Date(dateTime || '')
return (date.getHours() < 10 ? '0' + date.getHours() : date.getHours()) + ':' + (date.getMinutes() < 10 ? '0' + date
.getMinutes() : date.getMinutes()) + ':' + (date.getSeconds() < 10 ? '0' + date.getSeconds() : date.getSeconds())
}
// 使用
// timeFormatting(new Date());
// timeFormatting(1719477463); // 16:37:43
// timeFormatting(1719477463000); // 16:37:43
六、秒 转换为 分秒
javascript
/**
* 秒 转换为 分秒
* @param {Object} s
*/
export function formatTime(s) {
let t = '';
s = Math.floor(s);
if (s > -1) {
let min = Math.floor(s / 60) % 60;
let sec = s % 60;
if (min < 10) {
t += "0";
}
t += min + ":";
if (sec < 10) {
t += "0";
}
t += sec;
}
return t;
}
// 使用
// formatTime(90); // 01:30