完整日历:一天班次

时间:2017-09-29 13:52:45

标签: ruby-on-rails ruby fullcalendar google-calendar-api

我使用Fullcalendar通过Google日历API从Google日历呈现数据。对于测试,我不使用谷歌API提要。 我的问题是:

对于同一天上午8:00,我有2天的选择

enter image description here

 events : [
            {
                title: 'Event1',
                start: '2017-09-04T08:00:00+02:00',
                end: '2017-09-06T08:00:00+02:00'
            }
        ],

上午9点,我正确选择了3天

enter image description here

events : [
            {
                title: 'Event1',
                start: '2017-09-04T09:00:00+02:00',
                end: '2017-09-06T09:00:00+02:00'
            }
        ],

我在谷歌日历上做了相同的测试,我在同一个2小时的开始 - 结束时选择了3天。

有人可以帮助我吗?

这是我对fullcalendar的基本配置:

 editable: true,
 height: 500,
 firstDay: 1,
 selectable: true,

0 个答案:

没有答案