0

我不希望人们试图在我的 fullCalendar 中创建过去的事件。因此,一旦他们选择了日期/时间,我会进行如下快速检查:

select: function(start, end, allDay) { 
        // need to check the day first. If the selected day/time < today, throw an alert
        // otherwise allow the booking of the conference.
            var now = calendar.fullCalendar('getDate');
            if (start < now )
            {
                alert('You cannot book a conference in the past!' +start +now);
                calendar.fullCalendar( 'unselect' );
            }
            else
            {
                             // other stuff here
                            }

这很好用。如果我点击早于现在的时间或日期,我会收到一条警报,说我不能这样做。完美对不对?

我正在使用 jQuery DatePicker,我可以在一个小日历视图中单击一个日期,然后在我的 fullCalendar 中转到该日期,该日期默认为仅议程视图。它工作得很好:

$( "#datepicker" ).datepicker({
        changeMonth: true,
        changeYear: true,
        minDate: 0, 
        maxDate: "+1Y",
        onSelect: function(dateText) {
            // fullCalendar only accepts a date in a specific format so parse the date
            // from the jQuery DatePicker widget and use that result to move the calendar
            // to the correct day.
            var pd = $.fullCalendar.parseDate(dateText);
            $('#calendar').fullCalendar('gotoDate', pd);
        }

    });

这个例程让我在议程视图中处于正确的一周。然后我可以选择在该周工作的日期。但是,如果我尝试在使用 gotoDate 方法去的日期之前的日期创建事件,我也会收到关于过去创建事件的错误。似乎“gotoDate”方法实际上是在设置日期。我可以在该日期或之后创建事件,但不能在该日期之前创建。

如果我只使用 fullCalendar 的导航方法,它应该可以完美运行。但是,由于 fullCalendar 没有“跳转到日期”选项或小部件,我使用 DatePicker 自己创建,我认为这是合乎逻辑的事情。

那么,这是一个错误吗?还是我做错了什么?

4

1 回答 1

2

是的,感谢 Kyoka 和 Ganeshk 的评论,回答了我自己的问题。碰巧的是,fullCalendar('getDate') 函数返回当前选定的日期,而不是“今天”。这只是我对文档的误解。那么解决方案是使用一个新的 Date 对象,在这种情况下它可以完美地工作:

select: function(start, end, allDay) { 
    // need to check the day first. If the selected day/time < today, throw an alert
    // otherwise allow the booking of the conference.
        var now = new Date();
        if (start < now )
        {
            alert('You cannot book a conference in the past!');
            calendar.fullCalendar( 'unselect' );
        }
        else
        {
                         // other stuff here
                        }

希望这对其他人也有帮助。

于 2012-06-14T18:22:56.497 回答