Angularjs 标头中缺少Fullcalendar资源名称

Angularjs 标头中缺少Fullcalendar资源名称,angularjs,fullcalendar,Angularjs,Fullcalendar,我使用许可的完整日历,并将groupByDateAndResource设置为true。我没有显示标题,因为我创建了一个自定义标题 在day视图中,我只看到资源标题,没有看到日期 在其他视图中,我只看到日期,没有资源标题 如何在两个视图上都显示文档中显示的方式 这是我的日历对象的配置方式(我使用角度): 这听起来像是一个css问题。是否覆盖了.fc小部件标题的高度?如果你没有资源,这是有道理的,但如果你有资源,这将导致你的问题 calendar: { defaultDate: this

我使用许可的完整日历,并将
groupByDateAndResource
设置为true。我没有显示标题,因为我创建了一个自定义标题

  • 在day视图中,我只看到资源标题,没有看到日期
  • 在其他视图中,我只看到日期,没有资源标题
  • 如何在两个视图上都显示文档中显示的方式

    这是我的日历对象的配置方式(我使用角度):


    这听起来像是一个css问题。是否覆盖了
    .fc小部件标题的高度?如果你没有资源,这是有道理的,但如果你有资源,这将导致你的问题

    calendar: {
          defaultDate: this.$stateParams.date,
          height: $window.innerHeight - 45,
          editable: true,
          resources: [],
          groupByDateAndResource: true,
          header: '',
          defaultView: 'agendaWorkWeek',
          firstDay: 1,
          minTime: '07:00:00',
          maxTime: '22:00:00',
          axisFormat: 'HH:mm',
          timeFormat: 'HH:mm',
          slotDuration: '00:15:00',
          slotLabelInterval: '1:00',
          allDaySlot: false,
          eventColor: '#333333',
          eventTextColor: '#000',
          columnFormat: {
            month: 'dddd',
            agendaWeek: 'ddd, MMM D',
            agendaDay: 'dddd, MMM D, YYYY'
          },
          nowIndicator: true,
          displayEventTime: true,
          displayEventEnd: {
            month: false,
            basicWeek: true,
            'default': true
          },
          views: {
            agendaThreeDay: {
              type: 'agenda',
              columnFormat: 'ddd, MMM D',
              duration: {days: 3}
            },
            agendaWorkWeek: {
              type: 'agenda',
              columnFormat: 'ddd, MMM D',
              duration: {days: 7},
              weekends: false
            }
          },
          dayClick: dayClick,
          eventClick: eventClick,
          eventResize: changeTime,
          eventDrop: changeTime,
          windowResize: windowResize
        }