Files
frontend/utils/date.ts
2025-06-19 14:25:18 +08:00

16 lines
669 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

export function formatDateTime() {
const now = new Date();
// 获取年份、月份、日期、小时、分钟、秒数
const year = now.getFullYear();
const month = String(now.getMonth() + 1).padStart(2, '0'); // 月份从0开始需要加1
const day = String(now.getDate()).padStart(2, '0');
const hours = String(now.getHours()).padStart(2, '0');
const minutes = String(now.getMinutes()).padStart(2, '0');
const seconds = String(now.getSeconds()).padStart(2, '0');
// 拼接成需要的格式
const formattedDateTime = `${year}-${month}-${day}T${hours}:${minutes}:${seconds}`;
return formattedDateTime;
}