重定向url:fullcalendar到action行为的事件源中的“xyz”

时间:2013-03-18 16:53:40

标签: jquery struts2 fullcalendar

我是网络应用程序开发的新手,目前我在工作中被分配了一个Web应用程序,我需要使用struts2 java实现完整日历,我已经显示了它,但我无法将其重定向到动作类从mySQL获取数据并显示它。请给我指点如何做到这一点,我现在尝试了8天,但仍然没有运气。

感谢!!!

已添加代码:

我知道对于获取json feed的事件源的java / servlet语法是:

eventSources: [{
            url: '/mailexample/calendarevents',
            type: 'GET',
             dataType: 'json',
          }]

截至目前我已经尝试过:

url: 'calanderevents.action',
type: 'GET',
 dataType: 'json',

 url action: 'calendarevents',
    type: 'GET',
     dataType: 'json',

url: 'calendarevents',  
// where calendar events maps to an action class
        type: 'GET',
         dataType: 'json',

所有这些似乎都不起作用。请帮助。

1 个答案:

答案 0 :(得分:0)

应该是这样的......试试吧

$('#calendar').fullCalendar({
events: function(start, end, callback) {
    $.ajax({
        url: 'calanderevents.action',
        dataType: 'json',
        data: {
            // our hypothetical feed requires UNIX timestamps
            start: Math.round(start.getTime() / 1000),
            end: Math.round(end.getTime() / 1000)
        },
        success: function(data) {
            var events = [];
            // logic to get each item from data and push it in events array
            callback(events);
        }
    });
}
});