完整日历JSON演示不起作用

时间:2011-01-11 17:24:20

标签: json fullcalendar

我最近下载了完整日历程序,并想知道在服务器上安装它以使用JSON提要需要什么。我尝试运行下载提供的json演示,但它不会从提供的php文件中获取任何事件。

感谢您的帮助

3 个答案:

答案 0 :(得分:1)

我遇到了同样的问题,但解决方法非常简单,只需检查json.html没有正确设置标头(事实上它没有链接到CSS,也没有JQuery或javascript文件),只需检查一下。我的json.html的副本是:

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<link rel='stylesheet' type='text/css' href='../public/js/fullcalendar/fullcalendar.css' />
<link rel='stylesheet' type='text/css' href='../public/js/fullcalendar/fullcalendar.print.css' media='print' />
<script type='text/javascript' src='../public/js/jquery/jquery-1.5.2.min.js'></script>
<script type='text/javascript' src='../public/js/jquery/jquery-ui-1.8.11.custom.min.js'></script>
<script type='text/javascript' src='../public/js/fullcalendar/fullcalendar.min.js'></script>
<script type='text/javascript'>

    $(document).ready(function() {

        $('#calendar').fullCalendar({

            editable: true,

            events: "json-events.php",

            eventDrop: function(event, delta) {
                alert(event.title + ' was moved ' + delta + ' days\n' +
                    '(should probably update your database)');
            },

            loading: function(bool) {
                if (bool) $('#loading').show();
                else $('#loading').hide();
            }

        });

    });

</script>
<style type='text/css'>

    body {
        margin-top: 40px;
        text-align: center;
        font-size: 14px;
        font-family: "Lucida Grande",Helvetica,Arial,Verdana,sans-serif;
        }

    #loading {
        position: absolute;
        top: 5px;
        right: 5px;
        }

    #calendar {
        width: 900px;
        margin: 0 auto;
        }

</style>
</head>
<body>
<div id='loading' style='display:none'>loading...</div>
<div id='calendar'></div>
<p>json-events.php needs to be running in the same directory.</p>
</body>
</html>

答案 1 :(得分:0)

它调用一个PHP文件(json-events.php),因此您需要从安装了php的Web服务器运行该示例

答案 2 :(得分:0)

一旦我设定了时区,它对我有用。

将其添加到json-events.php文件:

date_default_timezone_set('America/Los_Angeles');