gpt4 book ai didi

javascript - React 中的完整日历类型错误 : Cannot read property 'calendar' of undefined

转载 作者:行者123 更新时间:2023-11-28 03:04:36 25 4
gpt4 key购买 nike

我在尝试存储有关状态中选定时间的信息时收到错误。感谢您的帮助,感谢您的宝贵时间!如果你们需要更多具体信息,请告诉我。

以下是我的组件中的代码片段:

  const Calendar = (props) => {

const [startTime, setStartTime] = React.useState('');

const handleSelect = (selectedInfo) => {
//alert(selectedInfo.startStr);
setStartTime(selectedInfo.startStr);
}

return (
<FullCalendar
defaultView="timeGridWeek"
weekends={false}
allDaySlot={false}
plugins={[ timeGridPlugin, dayGridPlugin, interactionPlugin ]}
minTime="08:00:00"
selectable={true}
selectMirror={true}
selectOverlap={false}
select={handleSelect}
header={{
left: 'prev,next today',
center: 'title',
right: 'dayGridMonth,timeGridWeek,timeGridDay'
}}
events={[
{ title: 'event 1', start: '2020-03-16 10:00:00', end: '2020-03-16 12:00:00' },
{ title: 'event 2', start: '2020-03-19' }
]}
/>
);
}

最佳答案

fullcalendarfullcalendar-react 升级到版本 4.4.1 为我解决了这个问题。看来这是一个 bug .

关于javascript - React 中的完整日历类型错误 : Cannot read property 'calendar' of undefined,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60715582/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com