我正试图在使用fullcalendar框架开发的网页中显示谷歌日历中的一些数据。
但我有一个问题,叫做同域起源。。。我不知道该怎么解决。在文档中,fullcalendar上写着:
<script type='text/javascript'>
$(document).ready(function() {
$('#calendar').fullCalendar({
events: 'http://www.google.com/your_feed_url/'
});
});
</script>
但是,用我的公共日历这样做只会给我带来问题。
我尝试在服务器中使用php读取json格式的日历,但结果非常相似。未收到有关域的问题,但未显示事件。我收到一个关于formatDate未初始化的错误,所以我认为我没有读取事件。
你知道如何解决这个问题吗?我想,如果fullcalendar允许用gcalendar来做这件事,那就意味着它可以做到。
我在json:中添加了一些事件
{"version":"1.0","encoding":"UTF-8","feed": {"xmlns":"http://www.w3.org/2005/Atom","xmlns$openSearch":"http://a9.com/- /spec/opensearchrss/1.0/","xmlns$gCal":"http://schemas.google.com/gCal/2005","id": {"$t":"http://www.google.com/calendar/feeds/aristeidhsxr%40gmail.com/public/basic"},"update d":{"$t":"2013-08-22T09:47:26.000Z"},"category": [{"scheme":"http://schemas.google.com/g/2005#kind","term":"http://schemas.google.com/g/2005 #event"}],"title":{"$t":"aristeidhsxr@gmail.com","type":"text"},"subtitle": {"$t":"aristeidhsxr@gmail.com","type":"text"},"link": [{"rel":"alternate","type":"text/html","href":"http://www.google.com/calendar/embed? src=aristeidhsxr%40gmail.com"},{"rel":"http://schemas.google.com/g/2005#feed","type":"application/atom+xml","href":"http://www.google.com/calendar/feeds/aristeidhsxr%40gmail.com/public/basic"},{"rel":"http://schemas.google.com/g/2005#batch","type":"application/atom+xml","href":"http://www.google.com/calendar/feeds/aristeidhsxr%40gmail.com/public/basic/batch"},{"rel":"self","type":"application/atom+xml","href":"http://www.google.com/calendar/feeds/aristeidhsxr%40gmail.com/public/basic?alt=json&max-results=25"}],"author":[{"name":{"$t":"ΑÏιστείδης ΧÏήστου"},"email":{"$t":"aristeidhsxr@gmail.com"}}],"generator":{"$t":"Google Calendar","version":"1.0","uri":"http://www.google.com/calendar"},"openSearch$totalResults":{"$t":19},"openSearch$startIndex":{"$t":1},"openSearch$itemsPerPage":{"$t":25},"gCal$timezone":{"value":"Europe/Madrid"},"gCal$timesCleaned":{"value":0},"entry":[{"id":{"$t":"http://www.google.com/calendar/feeds/aristeidhsxr%40gmail.com/public/basic/2gh1aqf61krdvgr85eseoclr64"},"published":{"$t":"2013-08-22T09:47:26.000Z"},"updated":{"$t":"2013-08-22T09:47:26.000Z"},"category":[{"scheme":"http://schemas.google.com/g/2005#kind","term":"http://schemas.google.com/g/2005#event"}],"title":{"$t":"dghhfdg","type":"html"},"summary":{"$t":"Cuándo: vie 30 de ago de 2013 21:30 al 22:30 nCESTu003cbru003ennnu003cbru003eEstado del evento: bekräftad","type":"html"},"content":{"$t":"Cuándo: vie 30 de ago de 2013 21:30 al 22:30 nCESTu003cbr /u003ennnu003cbr /u003eEstado del evento: bekräftad","type":"html"},"link":[{"rel":"alternate","type":"text/html","href":"http://www.google.com/calendar/event?eid=MmdoMWFxZjYxa3JkdmdyODVlc2VvY2xyNjQgYXJpc3RlaWRoc3hyQG0","title":"alternate"}
这是json文件的一部分,并不完整。
我试着直接放几个事件,正如一位用户所说:
$(document).on('pageshow','#agenda',function(){
$('#calendar').fullCalendar({
events: [{
title: 'Event 1', start: '2013-08-26T19:10:00Z',
end: '2013-08-28T19:20:00Z'
},{
title: 'Event 2', start: '2013-08-27T16:25:00Z',
end: '2013-08-27T18:45:00Z'
}]
});
});
但我得到了一个错误说:
Uncaught TypeError: Cannot read property 'formatDate' of undefined gcal.js:11
(anonymous function) gcal.js:11
(anonymous function) gcal.js:107
您确定要更正php中http://www.google.com/your_feed_url/
中的解析事件吗?事件的开始和结束日期必须为ISO 8601
格式,类似于此2013-07-09T19:10:00-04:00
。您可以使用完整日历$.fullCalendar.formatDate(from, format);
来转换日期和时间。
你也可以使用谷歌日历Api来获取活动。
事件看起来一定是这样的:
events: [{
title: 'Event 1', start: '2013-07-09T19:10:00-04:00',
end: '2013-07-09T19:20:00-04:00', allDay: false
},{
title: 'Event 2', start: '2013-08-22T16:25:00-04:00',
end: '2013-08-22T18:45:00-04:00', allDay: true
}]
对于公共谷歌日历,你可以这样做:
var url = 'http://google.com/calendar/feeds/test@group.calendar.google.com/public/full?alt=json';
$.ajax({
url: url,
dataType: 'jsonp',
success: function(response){
var googleEvents = new Array();
for(var i = 0; i < response.feed.entry.length; i ++){
googleEvents[i] = {
title : response.feed.entry[i].title.$t,
start: response.feed.entry[i].gd$when[0].startTime,
end: response.feed.entry[i].gd$when[0].endTime
};
}
//init events
calendar = $('#calendar-container').fullCalendar({
events: googleEvents
});
}
});
参数alt
指定响应的格式。