将POST数据从日历发送到json_events.php

时间:2012-11-07 20:59:42

标签: fullcalendar

我想这很简单,但我无法理解这个概念。
基本上我正在处理上一次/下一次点击的事件

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值 假设我在这里正确的轨道。 [超级新手]

1 个答案:

答案 0 :(得分: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);
?>