React 大日历上的月末事件在下个月显示,例如 2020-9-30 事件在 10 月视图中显示
Month end events on react big calendar are showing in the next month for example 2020-9-30 event shows in the october view
反应大日历中的前几个月事件显示在下个月视图中,例如,2020-9-30 事件显示在上个月的 10 月,但如果我导航回 9 月 30 日,则没有任何显示
那是因为 1 月是第 0 个月。所以第 9 个月是 10 月
{
id: 0,
title: 'Board meeting',
start: new Date(2021, 8, 29, 9, 0, 0),
end: new Date(2021, 8, 29, 13, 0, 0),
}
9 月 29 日显示
反应大日历中的前几个月事件显示在下个月视图中,例如,2020-9-30 事件显示在上个月的 10 月,但如果我导航回 9 月 30 日,则没有任何显示
那是因为 1 月是第 0 个月。所以第 9 个月是 10 月
{
id: 0,
title: 'Board meeting',
start: new Date(2021, 8, 29, 9, 0, 0),
end: new Date(2021, 8, 29, 13, 0, 0),
}
9 月 29 日显示