Fullcalendar - 来自json feed的事件形成另一个目录

时间:2014-05-21 11:42:15

标签: json fullcalendar

嗨我的json feed创建了一些小问题。

此配置事件,我稍后调用:$('#calendar')。fullCalendar(“addEventSource”,source.month)

var source = {
    month: {
                url: 'events_month.php',
                type: 'GET',
                cache: true,
                color: '#4AB8E7',
                textColor: 'white',
                className: 'month'
            },

我想稍微清理一下我的目录,并将events_month.php复制到events / events_month.php。将代码更改为:

 month: {
                url: 'events/events_month.php',
                type: 'GET',
                cache: true,
                color: '#4AB8E7',
                textColor: 'white',
                className: 'month'
            },

但它停止在我的完整日历中显示事件。没有控制台错误。请帮忙解决这个问题。

0 个答案:

没有答案