0

我正在使用 jquery 插件 fullcalendar https://github.com/arshaw/fullcalendar 我怀疑要编写自己的服务器端日历管理系统或只是使用谷歌日历。与谷歌日历的集成完美无缺,但我想知道如何访问谷歌日历事件附件(这些可以在此处启用https://www.google.com/calendar/render?settings=4)。

我想要这样的东西

$('#calendar').fullCalendar({
    events: {
        url: 'link/to/google/calendar',
        className: 'gcal-event'         // an option!

    },
    eventClick: function(event) {
        console.log(event);
        alert(event.attachment);
        return false;
    }
});

所以我的问题更详细一点:如何在事件对象中有一个事件附件,以便我可以在 eventClick 处理程序中访问它。

编辑:我刚刚检查过,谷歌日历中的 xml 中没有关于附件的信息。

4

1 回答 1

0

the attachment are not included in the google calendar's feed data since this is an experimental feature from google. So getting easy access to these attachments is impossible for now.

于 2013-09-21T08:18:15.117 回答