我的代码:
$(document).on('click','.fc-day',function () {
var date=$(this).attr('data-date');
console.log(date);
$.post("{{ path("admin_fitness_event_create") }}",{'date':date}, function (data) {
$("#myModal").modal('show').find('.modal-body').html(data)
})
});
我想通过ajax将值变量日期发送到数据库,我该怎么做?我试过prePersist方法,但她没有认识到ajax请求
public function prePersist($object)
{
$date=$_GET['date']; // not isset
$object->setStart($date);
$object->setEnd($date);
}