我正在尝试使用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>
)
}
答案 0 :(得分:3)
必须为日历容器元素添加高度。 如果您没有为日历容器添加高度,则日历将不可见。
必须阅读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>
答案 1 :(得分:1)
您需要在日历上设置高度或最小高度:
.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',
}
]
答案 2 :(得分:0)
创建BigCalendar组件时,指定了
startAccessor="startDate"
endAccessor="endDate"
这告诉BigCalendar在您的事件对象中查找startDate=
和endDate=
而不是start=
和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',
},
];
答案 3 :(得分:0)
您已在dummydata中设置了开始和结束键,但您正在访问startDate和endDate。
<BigCalendar
events={dummyEvents}
startAccessor='start'
endAccessor='end' />