Node.js/JavaScript 獲取最近 30 天的日期

億天發表於2019-01-17

由於每個月的天數可能有 28、29、30、31這四種情況,所有最近30天的日期會出現以下三種情況:

  • 開始日期和結束日期都是當前月,同一個月
  • 開始日期是上個月,結束日期是當前月
  • 開始日期是上上個月,中間是 2 月,結束日期是當前月

對日期的處理使用的是 dayjs 模組

npm install --save dayjs
複製程式碼

獲取當天日期(結束日期)和開始日期

// 開始日期 dayjs 物件
const endDayjs = dayjs();

// 結束日期 dayjs 物件,最近 30 天,包含當前的話,則需要當前日期減去 29 天
const startDayjs = dayjs().subtract(29, 'days');
複製程式碼

// dayjs 獲取日期的天數、月份、年份的方法,注意獲取到的月份比實際小 1,所有需要加上 1

dayjs().year();
dayjs().month() + 1;
dayjs().date();
複製程式碼

獲取每月共有多少天,計算最近 30 天是否跨月份

dayjs().daysInMonth()
複製程式碼

生成指定範圍的陣列,以下程式碼表示生成 [1, 2, 3, .... 30],注意不包含結尾的數字。

_.range(1, 31) 
複製程式碼

_.each 表示對陣列進行迴圈,類似 for 或 Array map 方法

重點來了,完整程式碼以下:

const _ = require('lodash');
const dayjs = require('dayjs');

function last30dates()  {
  const endDayjs = dayjs();
  const endYear = endDayjs.year();
  const endMonth = endDayjs.month() + 1;
  const endMonthString = endMonth < 10 ? '0' + endMonth.toString() : endMonth.toString();
  const endDate = endDayjs.date();
  const startDayjs = dayjs().subtract(29, 'days');
  const startYear = startDayjs.year();
  const startMonth = startDayjs.month() + 1;
  const startMonthString = startMonth < 10 ? '0' + startMonth.toString() : startMonth.toString();
  const startDate = startDayjs.date();
  const dates = [];
  if (endMonth === startMonth) {
    // 同一個月,直接改變天數
    _.each(_.range(startDate, endDate + 1), (item) => {
      if (item < 10) {
        item = '0' + item.toString();
      }
      dates.push(`${endYear}-${endMonthString}-${item}`);
    });
  } else if (endMonth === startMonth + 1 || startMonth - endMonth === 11) {
    // 上一個月和當前月
    // 上個月
    _.each(_.range(startDate, startDayjs.daysInMonth() + 1), (item) => {
      if (item < 10) {
        item = '0' + item.toString();
      }
      dates.push(`${startYear}-${startMonthString}-${item}`);
    });

    // 當前月
    _.each(_.range(1, endDate + 1), (item) => {
      if (item < 10) {
        item = '0' + item.toString();
      }
      dates.push(`${endYear}-${endMonthString}-${item}`);
    });
  } else if (endMonth === startMonth + 2) {
    // 上上個月、上個月和當前月,遇到 2 月時
    // 上上個月
    _.each(_.range(startDate, startDayjs.daysInMonth() + 1), (item) => {
      if (item < 10) {
        item = '0' + item.toString();
      }
      dates.push(`${startYear}-${startMonthString}-${item}`);
    });

    // 2 月
    _.each(_.range(1, startDayjs.add(1, 'months').daysInMonth() + 1), (item) => {
      if (item < 10) {
        item = '0' + item.toString();
      }
      dates.push(`${startYear}-02-${item}`);
    });

    // 當前月
    _.each(_.range(1, endDate + 1), (item) => {
      if (item < 10) {
        item = '0' + item.toString();
      }
      dates.push(`${endYear}-${endMonthString}-${item}`);
    });
  }

  return dates;
};
複製程式碼

原文連結:www.childsay.com/js-last-30-…

相關文章