eachMonthOfInterval
返回指定时间间隔内的所有月份。
javascript
import { eachMonthOfInterval } from "date-fns";
// 示例时间间隔
const startDate = new Date(2024, 0, 1); // 2024年1月1日
const endDate = new Date(2024, 2, 1); // 2024年3月1日
// 返回指定时间间隔内的所有月份
const months = eachMonthOfInterval({ start: startDate, end: endDate });
console.log("指定时间间隔内的所有月份:", months);
// 指定时间间隔内的所有月份:[
// Wed Jan 01 2024 00:00:00 GMT+0800 (China Standard Time),
// Fri Feb 01 2024 00:00:00 GMT+0800 (China Standard Time),
// Fri Mar 01 2024 00:00:00 GMT+0800 (China Standard Time)
// ]