通过不是其id的元素名称获取fullcalendar get事件

时间:2019-04-10 15:32:46

标签: javascript jquery fullcalendar fullcalendar-3

我正在使用fullcalendar.io。 如果我想获取一个事件,可以通过其ID来获取:

var arry=$("#calendar").fullCalendar('clientEvents', eventID);

我正在使用看起来像这样的JSON填充日历:

{
"events": [
    {
        "title": "tkt[24595]",
        "start": "2019-04-02T08:00:00.196-0500",
        "end": "2019-04-02T09:00:00.196-0500",
        "id": "107788",
        "userID": "1",
        "color": "#2d9798",
        "className": "ticketSrc",
        "custom": "<div class='einfo'><b>problem&..",
        "unique": "1_107788"
    },
    {
        "title": "tkt[24598]",
        "start": "2019-04-03T08:00:00.196-0500",
        "end": "2019-04-03T09:00:00.196-0500",
        "id": "108167",
        "userID": "1",
        "color": "#2d9798",
        "className": "ticketSrc",
        "custom": "<div class='einfo'><b>problem&..",
        "unique": "1_108167"
    }]}

如何使用传递给它的其他字段之一(例如“ userID”)来获得日历事件?

1 个答案:

答案 0 :(得分:2)

clientEvents的{​​{3}}中所述,除了传递ID作为参数外,您还可以传递自定义回调函数,该函数可用于以任何方式过滤事件列表希望。回调针对日历中的每个事件运行一次,如果回调返回true,则该事件将包含在结果中。

例如(使用硬编码的用户ID,但您知道了)

var arry = $("#calendar").fullCalendar('clientEvents', function(event) {
  if (event.userID == "1") return true;
  return false;
});