我正在使用带有Google日历的Jquery Full日历插件。 Google日历会向我返回事件列表的Json响应,但事件不会显示在我的日历中,并且会给我错误
“无法加载资源:服务器响应状态为400 (错误的请求) http://localhost:22002/%7B%22kind%22:%22calendar?start=1385838000&end=1389466800&_=1386662028609“
(function () {
HRBC.controllers.Calendar = function () {
this.load = function (calendarId, url) {
//alert(url);
$(calendarId).fullCalendar({
events: url,
eventClick: function (event) {
// opens events in a popup window
window.open(event.url, 'gcalevent', 'width=700,height=600');
return false;
},
loading: function (bool) {
if (bool) {
$('#loading').show();
setTimeout(function () {
$('#calendar').fullCalendar('render');
}, 1);
} else {
$('#loading').hide();
}
}
});
}
}
url拥有我所有的Json Response,它已经是JSON.stringify。