gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-03 22:47:55 25 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
)

});

然而,我的挑战是接收多个提要。完整的日历文档说:

事件源:数组 与“事件”选项类似,不同之处在于可以指定多个源。例如,可以指定一组 JSON URL、一组自定义函数、一组硬编码事件数组或任意组合。

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

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

最佳答案

在这里找到解决方案; 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/1704548/

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