JS--获取当前时间,当前月,最近三个月日期时间段,开始结束日期平铺

一、当前时间

let printTime = new Date(new Date().getTime() + 8 * 60 * 60 * 1000)
  .toISOString()
  .replace(/T/, " ")
  .replace(/\..+/, "")
  .substring(0, 19);

二、当前月第一天和最后一天

	function getCurrentMonth() {
      const start = new Date();
      const end = new Date();
      const year = start.getFullYear();
      const month = start.getMonth();
      // 本月第一天
      start.setDate(1);
      start.setHours(0, 0, 0, 0);
      // 本月最后一天
      end.setMonth(month + 1);
      end.setDate(0);
      end.setHours(23, 59, 59, 999);
      return [start,end]
    },

三、最近三个月的开始时间,结束时间

function getRecentThreeMonthsDateRange() {
  // 获取当前日期和时间
  const currentDate = new Date();
  
  // 计算三个月前的日期(默认为当天的00:00:00)
  const threeMonthsAgoDate = new Date(currentDate);
  threeMonthsAgoDate.setHours(0, 0, 0, 0); // 确保是当天的开始时间
  threeMonthsAgoDate.setMonth(threeMonthsAgoDate.getMonth() - 3);
  
  // 格式化三个月前的日期为 yyyy-MM-dd HH:mm:ss(但时间部分为00:00:00)
  const startYear = threeMonthsAgoDate.getFullYear();
  const startMonth = String(threeMonthsAgoDate.getMonth() + 1).padStart(2, '0');
  const startDay = String(threeMonthsAgoDate.getDate()).padStart(2, '0');
  const startHours = '00';
  const startMinutes = '00';
  const startSeconds = '00';
  const startDate = `${startYear}-${startMonth}-${startDay} ${startHours}:${startMinutes}:${startSeconds}`;
  
  // 格式化当前日期和时间为 yyyy-MM-dd HH:mm:ss
  const endYear = currentDate.getFullYear();
  const endMonth = String(currentDate.getMonth() + 1).padStart(2, '0');
  const endDay = String(currentDate.getDate()).padStart(2, '0');
  const endHours = String(currentDate.getHours()).padStart(2, '0');
  const endMinutes = String(currentDate.getMinutes()).padStart(2, '0');
  const endSeconds = String(currentDate.getSeconds()).padStart(2, '0');
  const endDate = `${endYear}-${endMonth}-${endDay} ${endHours}:${endMinutes}:${endSeconds}`;
  
  return [startDate, endDate];
}

// 调用函数并打印结果
console.log(getRecentThreeMonthsDateRange());

四、开始结束日期平铺

function fillDates(start, end) {
  const dates = [];
  const currentDate = new Date(start);
  end = new Date(end);
  
  while (currentDate <= end) {
    dates.push(currentDate.toISOString().split('T')[0]); // 将日期转换为YYYY-MM-DD格式并添加到数组中
    currentDate.setDate(currentDate.getDate() + 1); // 增加一天
  }
  
  return dates;
}


const givenDates = [
  "2024-11-12",
  "2024-11-15"
];
const filledDates = fillDates(givenDates[0], givenDates[1]);
console.log(filledDates);  //[ '2024-11-12', '2024-11-13', '2024-11-14', '2024-11-15' ]
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值