私は CodeIgniter プロジェクトに取り組んでおり、ajax/jquery の初心者です。フルカレンダーを使用しています。私の見解では、イベントの日付を投稿してから、コントローラーに投稿したいと考えています。ここに私のCalendarView.phpがあります
$(document).ready(function() {
$('#calendar').fullCalendar({
dayClick: function(date, allDay, jsEvent, view) {
add_event(date);
},
events: 'https://www.google.com/calendar/feeds/myLogin%40gmail.com/public/basic'
});
});
//Ajax call
function add_event(date) {
$.ajax({
type: 'POST',
url: '<?php echo site_url()."/welcome/add_event/"; ?>',
data:{ eventsJson: JSON.stringify(date) },
dataType : "json",
success: function (response) {
alert(response);
}
});
}
私のコントローラーでは、これが私がしていることです:
$date= $this->input->post('data');
誰でも私を助けることができますか?