翼度科技»论坛 编程开发 JavaScript 查看内容

JavaScript 日期和时间的格式化

8

主题

8

帖子

24

积分

新手上路

Rank: 1

积分
24
一、日期和时间的格式化
1、原生方法
1.1、使用 toLocaleString 方法
Date 对象有一个 toLocaleString 方法,该方法可以根据本地时间和地区设置格式化日期时间。例如:
  1. const date = new Date();
  2. console.log(date.toLocaleString('en-US', { timeZone: 'America/New_York' })); // 2/16/2023, 8:25:05 AM
  3. console.log(date.toLocaleString('zh-CN', { timeZone: 'Asia/Shanghai' })); // 2023/2/16 上午8:25:05
复制代码
toLocaleString 方法接受两个参数,第一个参数是地区设置,第二个参数是选项,用于指定日期时间格式和时区信息。
1.2、使用 Intl.DateTimeFormat 对象
Intl.DateTimeFormat 对象是一个用于格式化日期和时间的构造函数。可以使用该对象来生成一个格式化日期时间的实例,并根据需要来设置日期时间的格式和时区。例如:
  1. const date = new Date();
  2. const formatter = new Intl.DateTimeFormat('en-US', {
  3.   timeZone: 'America/New_York',
  4.   year: 'numeric',
  5.   month: 'numeric',
  6.   day: 'numeric',
  7.   hour: 'numeric',
  8.   minute: 'numeric',
  9.   second: 'numeric',
  10. });
  11. console.log(formatter.format(date)); // 2/16/2023, 8:25:05 AM
复制代码
可以在选项中指定需要的日期时间格式,包括年、月、日、时、分、秒等。同时也可以设置时区信息。
2、使用字符串操作方法
可以使用字符串操作方法来将日期时间格式化为特定格式的字符串。例如:
  1. const date = new Date();
  2. const year = date.getFullYear().toString().padStart(4, '0');
  3. const month = (date.getMonth() + 1).toString().padStart(2, '0');
  4. const day = date.getDate().toString().padStart(2, '0');
  5. const hour = date.getHours().toString().padStart(2, '0');
  6. const minute = date.getMinutes().toString().padStart(2, '0');
  7. const second = date.getSeconds().toString().padStart(2, '0');
  8. console.log(`${year}-${month}-${day} ${hour}:${minute}:${second}`); // 2023-02-16 08:25:05
复制代码
以上代码使用了字符串模板和字符串操作方法,将日期时间格式化为 YYYY-MM-DD HH:mm:ss 的格式。可以根据实际需要来修改格式。
3、自定义格式化函数
3.1、不可指定格式的格式化函数
可以编写自定义函数来格式化日期时间。例如:
  1. function formatDateTime(date) {
  2.   const year = date.getFullYear();
  3.   const month = date.getMonth() + 1;
  4.   const day = date.getDate();
  5.   const hour = date.getHours();
  6.   const minute = date.getMinutes();
  7.   const second = date.getSeconds();
  8.   return `${year}-${pad(month)}-${pad(day)} ${pad(hour)}:${pad(minute)}:${pad(second)}`;
  9. }
  10. function pad(num) {
  11.   return num.toString().padStart(2, '0');
  12. }
  13. const date = new Date();
  14. console.log(formatDateTime(date)); // 2023-02-16 08:25:05
复制代码
以上代码定义了一个 formatDateTime 函数和一个 pad 函数,用于格式化日期时间并补齐数字。可以根据需要修改格式,因此通用性较低
3.2、可指定格式的格式化函数
下面是一个通用较高的自定义日期时间格式化函数的示例:
  1. function formatDateTime(date, format) {
  2.   const o = {
  3.     'M+': date.getMonth() + 1, // 月份
  4.     'd+': date.getDate(), // 日
  5.     'h+': date.getHours() % 12 === 0 ? 12 : date.getHours() % 12, // 小时
  6.     'H+': date.getHours(), // 小时
  7.     'm+': date.getMinutes(), // 分
  8.     's+': date.getSeconds(), // 秒
  9.     'q+': Math.floor((date.getMonth() + 3) / 3), // 季度
  10.     S: date.getMilliseconds(), // 毫秒
  11.     a: date.getHours() < 12 ? '上午' : '下午', // 上午/下午
  12.     A: date.getHours() < 12 ? 'AM' : 'PM', // AM/PM
  13.   };
  14.   if (/(y+)/.test(format)) {
  15.     format = format.replace(RegExp.$1, (date.getFullYear() + '').substr(4 - RegExp.$1.length));
  16.   }
  17.   for (let k in o) {
  18.     if (new RegExp('(' + k + ')').test(format)) {
  19.       format = format.replace(
  20.         RegExp.$1,
  21.         RegExp.$1.length === 1 ? o[k] : ('00' + o[k]).substr(('' + o[k]).length)
  22.       );
  23.     }
  24.   }
  25.   return format;
  26. }
复制代码
这个函数接受两个参数,第一个参数是要格式化的日期时间,可以是 Date 对象或表示日期时间的字符串,第二个参数是要格式化的格式,例如 yyyy-MM-dd HH:mm:ss。该函数会将日期时间格式化为指定的格式,并返回格式化后的字符串。
该函数使用了正则表达式来匹配格式字符串中的占位符,然后根据对应的日期时间值来替换占位符。其中,y 会被替换为年份,M、d、h、H、m、s、q、S、a、A 分别表示月份、日期、小时(12 小时制)、小时(24 小时制)、分钟、秒、季度、毫秒、上午/下午、AM/PM。
使用该函数进行日期时间格式化的示例如下:
  1. const date = new Date();
  2. console.log(formatDateTime(date, 'yyyy-MM-dd HH:mm:ss')); // 2023-02-16 08:25:05
  3. console.log(formatDateTime(date, 'yyyy年MM月dd日 HH:mm:ss')); // 2023年02月16日 08:25:05
  4. console.log(formatDateTime(date, 'yyyy-MM-dd HH:mm:ss S')); // 2023-02-16 08:25:05 950
  5. console.log(formatDateTime(date, 'yyyy-MM-dd hh:mm:ss A')); // 2023-02-16 08:25:05 上午
复制代码
可以根据实际需要修改格式化的格式,以及支持更多的占位符和格式化选项。
4、使用第三方库
除了原生的方法外,还有很多第三方库可以用来格式化日期时间,例如 Moment.js 和 date-fns 等。这些库提供了更多的日期时间格式化选项,并且可以兼容不同的浏览器和环境
  1. const date = new Date();
  2. console.log(moment(date).format('YYYY-MM-DD HH:mm:ss')); // 2023-02-16 08:25:05
  3. console.log(dateFns.format(date, 'yyyy-MM-dd HH:mm:ss')); // 2023-02-16 08:25:05
复制代码
 
以上是几种常用的日期时间格式化方法,在进行日期时间格式化时,可以使用原生的方法、自定义函数或第三方库,选择合适的方法根据实际需要进行格式化。
二、日期和时间的其它常用处理方法
1、创建 Date 对象
要创建一个 Date 对象,可以使用 new Date(),不传入任何参数则会使用当前时间。也可以传入一个日期字符串或毫秒数,例如:
  1. const now = new Date(); // 当前时间
  2. const date1 = new Date("2022-01-01"); // 指定日期字符串
  3. const date2 = new Date(1640995200000); // 指定毫秒数
复制代码
2、日期和时间的获取
Date 对象可以通过许多方法获取日期和时间的各个部分,例如:
  1. const date = new Date();
  2. const year = date.getFullYear(); // 年份,例如 2023
  3. const month = date.getMonth(); // 月份,0-11,0 表示一月,11 表示十二月
  4. const day = date.getDate(); // 日期,1-31
  5. const hour = date.getHours(); // 小时,0-23
  6. const minute = date.getMinutes(); // 分钟,0-59
  7. const second = date.getSeconds(); // 秒数,0-59
  8. const millisecond = date.getMilliseconds(); // 毫秒数,0-999
  9. const weekday = date.getDay(); // 星期几,0-6,0 表示周日,6 表示周六
复制代码
3、日期和时间的计算
可以使用 Date 对象的 set 方法来设置日期和时间的各个部分,也可以使用 get 方法获取日期和时间的各个部分,然后进行计算。例如,要计算两个日期之间的天数,可以先将两个日期转换成毫秒数,然后计算它们之间的差值,最后将差值转换成天数,例如:
  1. const date1 = new Date("2022-01-01");
  2. const date2 = new Date("2023-02-16");
  3. const diff = date2.getTime() - date1.getTime(); // 毫秒数
  4. const days = diff / (1000 * 60 * 60 * 24); // 天数
复制代码
4、日期和时间的比较
可以使用 Date 对象的 getTime() 方法将日期转换成毫秒数,然后比较两个日期的毫秒数大小,以确定它们的顺序。例如,要比较两个日期的先后顺序,可以将它们转换成毫秒数,然后比较它们的大小,例如:
  1. const date1 = new Date("2022-01-01");
  2. const date2 = new Date("2023-02-16");
  3. if (date1.getTime() < date2.getTime()) {
  4.   console.log("date1 在 date2 之前");
  5. } else if (date1.getTime() > date2.getTime()) {
  6.   console.log("date1 在 date2 之后");
  7. } else {
  8.   console.log("date1 和 date2 相等");
  9. }
复制代码
5、日期和时间的操作
可以使用 Date 对象的一些方法来进行日期和时间的操作,例如,使用 setDate() 方法设置日期,使用 setHours() 方法设置小时数,使用 setTime() 方法设置毫秒数等等。例如,要将日期增加一天,可以使用 setDate() 方法,例如:
  1. const date = new Date();
  2. date.setDate(date.getDate() + 1); // 增加一天
  3. console.log(date.toLocaleDateString()); // 输出增加一天后的日期
复制代码
6、获取上周、本周、上月和本月的开始时间和结束时间
以下是 JavaScript 获取本周、上周、本月和上月的开始时间和结束时间的代码示例:
  1. // 获取本周的开始时间和结束时间
  2. function getThisWeek() {
  3.   const now = new Date();
  4.   const day = now.getDay() === 0 ? 7 : now.getDay(); // 将周日转换为 7
  5.   const weekStart = new Date(now.getFullYear(), now.getMonth(), now.getDate() - day + 1);
  6.   const weekEnd = new Date(now.getFullYear(), now.getMonth(), now.getDate() + (6 - day) + 1);
  7.   return { start: weekStart, end: weekEnd };
  8. }
  9. // 获取上周的开始时间和结束时间
  10. function getLastWeek() {
  11.   const now = new Date();
  12.   const day = now.getDay() === 0 ? 7 : now.getDay(); // 将周日转换为 7
  13.   const weekStart = new Date(now.getFullYear(), now.getMonth(), now.getDate() - day - 6);
  14.   const weekEnd = new Date(now.getFullYear(), now.getMonth(), now.getDate() - day);
  15.   return { start: weekStart, end: weekEnd };
  16. }
  17. // 获取本月的开始时间和结束时间
  18. function getThisMonth() {
  19.   const now = new Date();
  20.   const monthStart = new Date(now.getFullYear(), now.getMonth(), 1);
  21.   const monthEnd = new Date(now.getFullYear(), now.getMonth() + 1, 0);
  22.   return { start: monthStart, end: monthEnd };
  23. }
  24. // 获取上月的开始时间和结束时间
  25. function getLastMonth() {
  26.   const now = new Date();
  27.   const monthStart = new Date(now.getFullYear(), now.getMonth() - 1, 1);
  28.   const monthEnd = new Date(now.getFullYear(), now.getMonth(), 0);
  29.   return { start: monthStart, end: monthEnd };
  30. }
复制代码
上述代码中,getThisWeek()、getLastWeek()、getThisMonth() 和 getLastMonth() 函数分别返回当前时间所在的本周、上周、本月和上月的开始时间和结束时间。这些函数使用了 Date 对象的方法,例如 getFullYear()、getMonth() 和 getDate() 等。它们可以用于获取需要进行时间区间计算的场景,例如统计某个时间范围内的数据等。
使用这些函数获取时间区间的示例:
  1. const thisWeek = getThisWeek();
  2. console.log(thisWeek.start); // 本周的开始时间
  3. console.log(thisWeek.end); // 本周的结束时间
  4. const lastWeek = getLastWeek();
  5. console.log(lastWeek.start); // 上周的开始时间
  6. console.log(lastWeek.end); // 上周的结束时间
  7. const thisMonth = getThisMonth();
  8. console.log(thisMonth.start); // 本月的开始时间
  9. console.log(thisMonth.end); // 本月的结束时间
  10. const lastMonth = getLastMonth();
  11. console.log(lastMonth.start); // 上月的开始时间
  12. console.log(lastMonth.end); // 上月的结束时间
复制代码
使用这些函数可以方便地获取需要的时间区间,并进行后续的操作。
7、根据出生日期计算年龄
以下是一个根据出生日期计算年龄的代码示例,包括了对闰年的处理:
  1. function calculateAge(birthDate) {
  2.   const birthYear = birthDate.getFullYear();
  3.   const birthMonth = birthDate.getMonth();
  4.   const birthDay = birthDate.getDate();
  5.   const now = new Date();
  6.   let age = now.getFullYear() - birthYear;
  7.   
  8.   if (now.getMonth() < birthMonth || (now.getMonth() === birthMonth && now.getDate() < birthDay)) {
  9.     age--;
  10.   }
  11.   
  12.   // 检查闰年
  13.   const isLeapYear = (year) => (year % 4 === 0 && year % 100 !== 0) || year % 400 === 0;
  14.   const isBirthLeapYear = isLeapYear(birthYear);
  15.   
  16.   // 调整闰年的年龄
  17.   if (isBirthLeapYear && birthMonth > 1) {
  18.     age--;
  19.   }
  20.   
  21.   if (isLeapYear(now.getFullYear()) && now.getMonth() < 1) {
  22.     age--;
  23.   }
  24.   
  25.   return age;
  26. }
复制代码
这个函数接收一个 Date 对象作为参数,代表出生日期。该函数计算当前日期与出生日期之间的时间差,以确定年龄。其中,使用 Date 对象的 getFullYear()、getMonth() 和 getDate() 方法获取出生日期的年、月和日。使用当前日期的年、月和日计算出年龄。如果当前月份小于出生月份,或当前月份等于出生月份但当前日期小于出生日期,则年龄减一。在这个函数中,定义了一个 isLeapYear() 函数,用于检查给定的年份是否为闰年。然后,在计算年龄时,调用这个函数,检查出生年份和当前年份是否为闰年。如果出生年份为闰年且出生月份在二月或之后,则年龄减一。如果当前年份为闰年且当前月份在一月或之前,则年龄减一。这样,就可以正确计算含有闰年的出生日期的年龄了。
这种计算年龄的方法仅是基于当前日期和出生日期之间的时间差,而不是考虑具体的月份和日期。因此,对于生日还未到的人,计算的年龄会比实际年龄小一岁。
使用这个函数计算年龄的示例:
  1. const birthDate = new Date("1990-01-01");
  2. const age = calculateAge(birthDate);
  3. console.log(age); // 33
复制代码
上述代码中,构造了一个 Date 对象,它代表出生日期。然后调用 calculateAge() 函数,将出生日期作为参数传入。该函数返回当前日期与出生日期之间的时间差,以确定年龄。最后打印计算出的年龄。
8、其他相关的知识点
 在使用 Date 对象时,需要注意以下几点:


  • 月份从 0 开始,0 表示一月,11 表示十二月;
  • getDate() 方法返回的是日期,而 getDay() 方法返回的是星期几;
  • Date 对象的年份是完整的四位数,例如 2023;
  • 使用 new Date() 创建 Date 对象时,返回的是当前时区的时间,如果需要使用 UTC 时间,可以使用 new Date(Date.UTC())。
 
JavaScript 中的 Date 对象提供了许多方法和属性,可以用于处理日期和时间,根据具体情况选择适合的方法和技巧。
 

来源:https://www.cnblogs.com/yuzhihui/p/17131754.html
免责声明:由于采集信息均来自互联网,如果侵犯了您的权益,请联系我们【E-Mail:cb@itdo.tech】 我们会及时删除侵权内容,谢谢合作!

举报 回复 使用道具