date.js 3.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. // 时间戳转换为年月日时分秒
  2. export const timesTampChange = (timestamp, format = 'Y-M-D h:m:s') => {
  3. if (!timestamp) return ''
  4. const date = new Date(timestamp)
  5. const Y = date.getFullYear().toString()
  6. const M = (date.getMonth() + 1).toString().padStart(2, '0')
  7. const D = date.getDate().toString().padStart(2, '0')
  8. const h = date.getHours().toString().padStart(2, '0')
  9. const m = date.getMinutes().toString().padStart(2, '0')
  10. const s = date.getSeconds().toString().padStart(2, '0')
  11. const formatter = { 'Y': Y, 'M': M, 'D': D, 'h': h, 'm': m, 's': s } // 替换format中的占位符
  12. let formattedDate = format.replace(/Y|M|D|h|m|s/g, matched => formatter[matched]) // 使用正则表达式匹配并替换占位符
  13. if (!formattedDate) formattedDate = Y + '-' + M + '-' + D + ' ' + h + ':' + m + ':' + s
  14. return formattedDate
  15. }
  16. // 根据生日时间戳计算年龄
  17. export const getAgeByBirthdayTimestamp = (timestamp) => {
  18. const now = new Date()
  19. const birthday = new Date(timestamp)
  20. const age = now.getFullYear() - birthday.getFullYear()
  21. return age
  22. }
  23. // 将YYYY-MM转换为时间戳
  24. export const convertYearMonthToTimestamp = (yearMonth) => {
  25. const regex = /^\d{4}-\d{2}$/
  26. if (!regex.test(yearMonth)) {
  27. throw new Error("Invalid input format. Expected 'YYYY-MM'.")
  28. }
  29. const [year, month] = yearMonth.split('-').map(Number)
  30. const date = new Date(Date.UTC(year, month - 1, 1))
  31. const timestamp = date.getTime()
  32. return timestamp
  33. }
  34. export const getTimeDifferenceInChinese = (startTime, endTime) => {
  35. // 将时间戳转换为 Date 对象(假设时间戳单位为毫秒)
  36. const startDate = startTime ? new Date(startTime) : new Date();
  37. const endDate = endTime ? new Date(endTime) : new Date();
  38. // 计算年份差
  39. let yearsDiff = endDate.getFullYear() - startDate.getFullYear();
  40. // 计算月份差(考虑年份差后调整)
  41. let monthsDiff = endDate.getMonth() - startDate.getMonth();
  42. // 如果月份差为负,则从上一年借月
  43. if (monthsDiff < 0) {
  44. yearsDiff--;
  45. monthsDiff += 12;
  46. }
  47. // 计算日期差(考虑月份差后调整,如果日期差为负,则从上一月借天)
  48. let daysDiff = endDate.getDate() - startDate.getDate();
  49. if (daysDiff < 0) {
  50. monthsDiff--;
  51. // 获取 startDate 所在月的最后一天
  52. const lastDayOfMonth = new Date(startDate.getFullYear(), startDate.getMonth() + 1, 0).getDate();
  53. daysDiff += lastDayOfMonth; // 加上最后一天以补全月份差
  54. }
  55. // 构建结果字符串
  56. let result = "";
  57. if (yearsDiff > 0) {
  58. result += `${yearsDiff}年`;
  59. }
  60. if (monthsDiff > 0) {
  61. if (result) {
  62. // 如果已经有年份差异,则直接添加月份数(不带单位),后面正则替换会处理
  63. result += monthsDiff;
  64. } else {
  65. // 如果没有年份差异,则正常添加月份和单位
  66. result += `${monthsDiff}个月`;
  67. // 特别处理只有1个月的情况
  68. if (monthsDiff === 1) {
  69. result = "不到1个月"; // 直接替换为“不到1个月”,避免后续复杂的正则替换
  70. }
  71. }
  72. } else if (!result && daysDiff >= 0) {
  73. // 如果没有年份和月份差异,但天数差异存在(这里其实没处理天数,只是为完整性添加)
  74. // 理论上应该处理天数,但题目要求只到月份,所以这里直接返回“不到1个月”
  75. result = "不到1个月";
  76. }
  77. // 如果之前添加了月份数但没有年份(且不是直接处理的1个月情况),则需要去除末尾多余的数字并添加“个月”
  78. if (result && !/\d年$/.test(result) && /\d$/.test(result)) {
  79. result += "个月";
  80. }
  81. return result
  82. }