0

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

谢谢!!!

添加的代码:

我知道用于获取 json 提要的事件源的 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',

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

4

1 回答 1

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);
        }
    });
}
});
于 2013-03-19T09:23:55.317 回答