FullCalendar:事件未在时间段中显示

时间:2014-11-02 13:58:30

标签: angularjs fullcalendar

这是代码,我在eventSources数组中推送我的新事件。但它显示在allDaySlot,而不是在下面的例子中的那个特定时间它应该是啊@ 17:30插槽,但没有显示,我的开始日期格式是否有任何问题。

这是代码,

 $scope.fromTime = "17:30:00"
 var getTime = $scope.fromTime.split(':');
 var fromtime = new Date();

  var eventDate = moment(fromtime).hour(parseInt(getTime[0])).minutes(parseInt(getTime[1])).seconds(parseInt(getTime[2])).milliseconds(0);

 $scope.eventSources[0].push({
      title: 'meeting',
      start: eventDate
    });

> Log: 
> _start: Sun Nov 02 2014 17:30:30 GMT+0530 (IST)
> __proto__: Invalid Date

0 个答案:

没有答案