3

我正在尝试使用 react-big-calendar 包。http://intljusticemission.github.io/react-big-calendar/examples/index.html

我在页面上显示了日历。分页正在工作,我的控制台中没有错误。但是,我的事件都没有显示。我在某处有语法/格式错误吗?

import React from 'react';
import BigCalendar from 'react-big-calendar';
import moment from 'moment';

BigCalendar.momentLocalizer(moment); // or globalizeLocalizer


const Calendar = props => {
  const dummyEvents = [
    {
      allDay: false,
      end: new Date('December 10, 2017 11:13:00'),
      start: new Date('December 09, 2017 11:13:00'),
      title: 'hi',
    },
    {
      allDay: true,
      end: new Date('December 09, 2017 11:13:00'),
      start: new Date('December 09, 2017 11:13:00'),
      title: 'All Day Event',
    },
  ];
  return (
     <div>
         <BigCalendar
          events={dummyEvents}
          startAccessor="startDate"
          endAccessor="endDate"
        />
     </div>
  )
}
4

4 回答 4

4

必须为日历容器元素添加高度。如果您不为日历容器添加高度,则日历将不可见。

必须阅读 react-big-calendar 的文档:https ://github.com/intljusticemission/react-big-calendar

.rbc-calendar {
  min-height: 500px ;
}

<div className="rbc-calendar">
     <BigCalendar
      events={dummyEvents}
      startAccessor="startDate"
      endAccessor="endDate"
    />
 </div>
于 2018-04-25T07:29:58.933 回答
3

您需要在日历上设置高度或最小高度:

.rbc-calendar {
  min-height: 600px;
}



const dummyEvents = [
    {
      allDay: false,
      end: new Date('December 09, 2017 20:00:00'),
      start: new Date('December 09, 2017 06:00:00'),
      title: 'hi',
    }
]
于 2017-12-08T08:36:05.900 回答
1

创建 BigCalendar 组件时,您指定

startAccessor="startDate"
endAccessor="endDate"

这告诉 BigCalendar在您的事件对象中查找startDate=andendDate=而不是start=and 。end=将您的事件数组更改为此,它应该可以正常工作:

const dummyEvents = [
{
  allDay: false,
  endDate: new Date('December 10, 2017 11:13:00'),
  startDate: new Date('December 09, 2017 11:13:00'),
  title: 'hi',
},
{
  allDay: true,
  endDate: new Date('December 09, 2017 11:13:00'),
  startDate: new Date('December 09, 2017 11:13:00'),
  title: 'All Day Event',
},
];
于 2018-01-02T16:08:53.957 回答
0

您已经在 dummydata 中设置了开始和结束键,但您正在访问 startDate 和 endDate。

<BigCalendar
      events={dummyEvents}
      startAccessor='start'
      endAccessor='end' />
于 2018-01-09T08:41:59.733 回答