2

我想这很简单,但我不太清楚这个概念。
基本上我正在加载上一个/下一个点击事件

viewDisplay: function(view) { var next = view.title;  }, //alert(next);

给我“2012 年 11 月”
然后拆分这个

events:  { 
url: 'json-events.php',  
type: 'POST',  <br/>
data: { month: month,  
year: year } }, 

那么,如何读取 json-events.php 中的 POST val 假设我在正确的轨道上。【超级新手】

4

1 回答 1

0

用作对象参考http://arshaw.com/fullcalendar/docs/event_data/Event_Object/

<?php
//obtain params
$month = $_POST["month"];
$year = $_POST["year"];

//... get the list of events due to month and year

//create an events array due to docs
$events = array(array('id' => 1, 'title' => 'Event', 'allDay' => true)); 

//return json feed
echo json_encode($events);
?>
于 2013-10-22T11:07:33.827 回答