gpt4 book ai didi

javascript - 用户界面日历 : event not including end date if time is less than 9 am

转载 作者:行者123 更新时间:2023-12-03 08:15:56 24 4
gpt4 key购买 nike

我正在使用 Angular ui 日历插件,它使用 fullcalendar 在日历上显示事件。我遇到了一个奇怪的结果。如果事件在上午 9 点之前结束,则呈现的事件不包含结束日期。

这是我的两个事件:

 $scope.staticEvents = [
{
title: 'Static 1',
end: new Date(2015, 10, 30, 8, 30, 0, 0),
start: new Date(2015, 10, 26, 8, 0, 0, 0)

},
{
title: 'Static 2',
end: new Date(2015, 10, 30, 9, 0, 0, 0),
start: new Date(2015, 10, 26, 8, 0, 0, 0)
}
];

请在此处找到代码:plunker

如何在此场景中包含事件的结束日期?代码中是否缺少任何内容?

谢谢。

最佳答案

这是因为 fullCalendar 中 nextDayThreshold 默认设置为上午 9 点。您需要将其重置为上午 12 点。

更多信息here

您可以像这样在 Controller 中设置此选项:

$scope.uiConfig = {
calendar:{
nextDayThreshold:'00:00:00'
}
};

关于javascript - 用户界面日历 : event not including end date if time is less than 9 am,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33938421/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com