是否有一种方法可以更改FullCalendar使用的ID字段的名称?这样:
$('myCal').fullCalendar('option', 'idField', 'myCustomIdField').
或喜欢:
$('myCal').fullCalendar('option', 'idFunction', function(event){
return "prefix_" + event.id;
}).
感谢您的建议
没有idField
函数。eventDataTransform
选项确实是执行此操作的唯一方法