gpt4 book ai didi

jquery - 如何通过 jQuery 插件 fullCalendar 使用多个来源?

转载 作者:行者123 更新时间:2023-11-30 18:56:39 27 4
gpt4 key购买 nike

我有一个功能齐全的日历 http://arshaw.com/fullcalendar/正在为事件从 Google 日历中检索单个来源,如下所示:

$('#calendar').fullCalendar({

events: $.fullCalendar.gcalFeed(
"http://www.google.com/calendar/feeds/etc", // feed URL
{ className: 'gcal-events' } // optional options
)

});

然而,我的挑战是有多个提要进入。fullCalendar 文档说:

事件来源:数组 类似于“事件”选项,除了可以指定多个来源。例如,可以指定一组 JSON URL、一组自定义函数、一组硬编码事件数组或任何组合。

但是没有示例,所以这里的这个 JSON 新手有点卡住了。

对于使用 eventSources 和 feeds 数组需要什么有什么想法吗?

最佳答案

在这里找到解决方案; http://code.google.com/p/fullcalendar/issues/detail?id=192&q=eventSources

eventSources:
[
'msCal.txt', // location of Cal JSON script
'msLogBook.txt', // location of LogBook JSON object
'msEvents.txt' //location of the Events JSON object
]

回想起来非常简单。以下内容正在我的测试页上运行;

eventSources:
[
$.fullCalendar.gcalFeed('http://www.google.com/calendar/feeds/en.australian%23holiday%40group.v.calendar.google.com/public/basic'),
$.fullCalendar.gcalFeed('http://www.google.com/calendar/feeds/usa__en%40holiday.calendar.google.com/public/basic'),
$.fullCalendar.gcalFeed('http://www.google.com/calendar/feeds/en.indonesian%23holiday%40group.v.calendar.google.com/public/basic')
],

关于jquery - 如何通过 jQuery 插件 fullCalendar 使用多个来源?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1759774/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com