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

Fullcalendar-来自json提要的事件形成另一个目录,json,fullcalendar,Json,Fullcalendar,嗨,我对创建事件的json提要有一个小问题 这将使用我稍后调用的配置事件:$('#calendar').fullCalendar(“addEventSource”,source.month) 我想稍微清除一下我的目录,并将events\u month.php复制到events/events\u month.php。将代码更改为: month: { url: 'events/events_month.php', type: 'GET

嗨,我对创建事件的json提要有一个小问题

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

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

 month: {
                url: 'events/events_month.php',
                type: 'GET',
                cache: true,
                color: '#4AB8E7',
                textColor: 'white',
                className: 'month'
            },
但它停止显示我的完整日历中的事件。没有控制台错误。请帮我弄清楚

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