eachHourOfInterval
返回指定时间间隔内的所有小时。
javascript
import { eachHourOfInterval } from "date-fns";
// 示例时间间隔
const startDate = new Date(2024, 0, 1, 8); // 2024年1月1日 08:00
const endDate = new Date(2024, 0, 1, 12); // 2024年1月1日 12:00
// 返回指定时间间隔内的所有小时
const hours = eachHourOfInterval({ start: startDate, end: endDate });
console.log("指定时间间隔内的所有小时:", hours);
// 指定时间间隔内的所有小时:[
// Wed Jan 01 2024 08:00:00 GMT+0800 (China Standard Time),
// Wed Jan 01 2024 09:00:00 GMT+0800 (China Standard Time),
// Wed Jan 01 2024 10:00:00 GMT+0800 (China Standard Time),
// Wed Jan 01 2024 11:00:00 GMT+0800 (China Standard Time),
// Wed Jan 01 2024 12:00:00 GMT+0800 (China Standard Time)
// ]