因爲每一個月的天數可能有 2八、2九、30、31這四種狀況,全部最近30天的日期會出現如下三種狀況:html
對日期的處理使用的是 dayjs 模塊npm
npm install --save dayjs
複製代碼
獲取當天日期(結束日期)和開始日期數組
// 開始日期 dayjs 對象
const endDayjs = dayjs();
// 結束日期 dayjs 對象,最近 30 天,包含當前的話,則須要當前日期減去 29 天
const startDayjs = dayjs().subtract(29, 'days');
複製代碼
// dayjs 獲取日期的天數、月份、年份的方法,注意獲取到的月份比實際小 1,全部須要加上 1bash
dayjs().year();
dayjs().month() + 1;
dayjs().date();
複製代碼
獲取每個月共有多少天,計算最近 30 天是否跨月份ui
dayjs().daysInMonth()
複製代碼
生成指定範圍的數組,如下代碼表示生成 [1, 2, 3, .... 30],注意不包含結尾的數字。spa
_.range(1, 31)
複製代碼
_.each 表示對數組進行循環,相似 for 或 Array map 方法code
重點來了,完整代碼如下:htm
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;
};
複製代碼