如何在全日历事件中插入自定义数据



如何在我的 fullcalendar 对象中包含自定义数据并在 eventClick 期间访问它?

我的代码示例:

event: [
  {
    penCount: "2",
    title: "Pens",
    start: date[0]
  },
  {
    penCount: "6",
    title: "Pens",
    start: date[1]
  }
]

活动期间点击:

eventClick: function(info) {
    alert(info.event.penCount);
}

警报显示undefined,而不是我预期的值。我做错了吗?

通过在info.event对象后添加extendedProps来解决

eventClick: function(info) {
    alert(info.event.extendedProps.penCount);
}

由于event是一个数组,因此您需要放置要访问的对象的索引。
例如:info.event[i].penCount

相关内容

  • 没有找到相关文章

最新更新