1

我正在研究 fullCalendar 并尝试获取事件信息以显示在弹出模式中(单击事件时)。

但是,我只能显示活动标题、位置、开始日期和结束日期。

我还需要显示开始时间和结束时间。我究竟做错了什么?

我的代码如下:

eventClick:  function(event, jsEvent, view) {
    var startdate= new Date(event.event.start);
    var enddate= new Date(event.event.end);
    var starttime= new Date(event.event.startTime);
    var endtime= new Date(event.event.endTime);
    //console.log(event);
    $('#modalID').html(event.event.id);
    $('#modalTitle').html(event.event.title);
    $('#modalLocation').html(event.event.extendedProps.location);
    $('#modalStartDate').html(moment(startdate.getTime()).format("DD-MM-YYYY"));
    $('#modalStartTime').html(moment(starttime.getTime()).format("hh:mm A"));

    //moment("01:15:00 PM", "h:mm:ss A").format("HH:mm:ss")

    $('#modalEndDate').html(moment(enddate.getTime()).format("DD-MM-YYYY"));
    $('#modalEndTime').html(moment(endtime.getTime()).format("hh:mm A"));
    $('#fullCalModal').modal();
},

我的更新代码如下

 <script>

 document.addEventListener('DOMContentLoaded', function() {
 var calendarEl = document.getElementById('calendar');

 var calendar = new FullCalendar.Calendar(calendarEl, {

 plugins: [ 'interaction', 'dayGrid' ],
 defaultDate: '<cms:date format='Y-m-d' />',
 editable: true,
 eventLimit: true, // allow "more" link when too many events
 displayEventTime: false,

 events: [
 <cms:pages masterpage='events.php' show_future_entries='1'>
    {
 id: <cms:escape_json><cms:show k_page_id /></cms:escape_json>, 
 title: <cms:escape_json><cms:show k_page_title /></cms:escape_json>,
 location: <cms:escape_json><cms:show location /></cms:escape_json>,
 start: <cms:escape_json><cms:show start_date /></cms:escape_json>,
 startTime: <cms:escape_json><cms:show start_time /></cms:escape_json>,
 end: <cms:escape_json><cms:show end_date /></cms:escape_json>,
 endTime: <cms:escape_json><cms:show end_time /></cms:escape_json>
}<cms:if "<cms:not k_paginated_bottom/>">,</cms:if>
</cms:pages>
],
eventClick: function(info) {

var dateSettings = { "year": "numeric", "month": "2-digit", "day": "2-digit" 
};
var timeSettings = { "hour": "2-digit", "minute": "2-digit", "hour12": false 
};

var startdate = calendar.formatDate(info.event.start,  dateSettings);
var startTime = calendar.formatDate(info.event.start,  timeSettings);

var enddate = calendar.formatDate(info.event.end || startdate, 
dateSettings);
var endTime = calendar.formatDate(info.event.end, timeSettings);

$('#modalID').html(info.event.id);
$('#modalTitle').html(info.event.title);
$('#modalLocation').html(info.event.extendedProps.location);
$('#modalStartDate').html(startdate);
$('#modalStartTime').html(startTime);
$('#modalEndDate').html(enddate);
$('#modalEndTime').html(endTime);
$('#fullCalModal').modal();
},

eventTextColor: '#FFFFFF',

});

calendar.render();
});

</script>
4

1 回答 1

2

你真的把自己绑在这里了。

1)根据文档 event.startevent.end并且已经是 Date 对象。真的没有必要将它们解析成另一个 Date 或再次将它们变成 MomentJS 对象。只需按原样使用它们,并使用 fullCalendar 提供的日期格式化功能根据需要对其进行格式化。

2)事件对象(再次参见上面的文档)没有单独的“startTime”或“endTime”属性......整个日期和时间存储在startandend中。我不确定您从哪里知道存在单独的属性?在任何版本的 fullCalendar 中从未出现过这种情况。

3)您需要处理事件的end属性可能为空的情况,因此有一些额外的逻辑来处理它,而只需使用开始日期/时间:

eventClick: function(info) {
  var dateSettings = { "year": "numeric", "month": "2-digit", "day": "2-digit" };
  var timeSettings = { "hour": "2-digit", "minute": "2-digit", "hour12": false };

  var startdate = calendar.formatDate(info.event.start,  dateSettings);
  var starttime = calendar.formatDate(info.event.start,  timeSettings);

  var enddate; 
  var endtime; 
  if (info.event.end != null) {
    enddate = calendar.formatDate(info.event.end, timeSettings );
    endtime = calendar.formatDate(info.event.end, dateSettings );
  } 
  else {
    enddate = startdate;
    endtime = starttime;
  }

  $('#modalID').html(info.event.id);
  $('#modalTitle').html(info.event.title);
  $('#modalLocation').html(info.event.extendedProps.location);
  $('#modalStartDate').html(startdate);
  $('#modalStartTime').html(starttime);
  $('#modalEndDate').html(enddate);
  $('#modalEndTime').html(endtime);
  $('#fullCalModal').modal();
},

演示:https ://codepen.io/anon/pen/eapjWN?editors=1010

注意,如果您使用的是 fullCalendar v4,那么您的 eventClick 回调参数是错误的 - 再次查看相关文档- 您的参数看起来像 v3 参数。jsEvent并且view不再单独提供,而是在现在是第一个参数的 info 对象中提供。说到这一点,调用第一个参数event确实是用词不当,因为它包含的不止这些。你最终写作的事实event.event...告诉你你有一个命名问题。更好地命名它更有意义。出于代码质量的考虑,我上面的示例在解决实际问题所需的更改之外进行了这些更改。

于 2019-05-08T13:43:20.797 回答