$.ajax を使用して、作成されたオブジェクトを json-feed ファイルに保存したいのですが、何も保存されていません。オブジェクトはカレンダーに配置されますが、.php ファイルの JSON フィードを確認しても何も変更されませんか?
var calendar = $('#calendar').fullCalendar({
header: {
left: 'prev,next today',
center: 'title',
right: ''
},
selectable: true,
selectHelper: true,
select: function(start, end) {
var title = prompt('Event:');
$.ajax({
url: "json-events.php",
type: 'POST',
data: {"foo": "bar"},
processData: false,
contentType: 'application/json'
});
if (title) {
calendar.fullCalendar('renderEvent',
{
title: title,
start: start,
end: end,
allday: false
},
true // make the event "stick"
);
}
calendar.fullCalendar('unselect');
},
editable: true,
events: "json-events.php",
eventDrop: function(event, delta) {
alert(event.title + ' was moved ' + delta + ' days\n' +
'would update json-feed here');
},