如何编辑 "react-big-calendars" 中的事件
How do I edit events in "react-big-calendars"
我想要一个可点击的功能,在点击日历上的事件时我可以编辑日期或事件标题。
可以用“react-big-calendar”这样做吗?
如果没有,你能推荐一些其他的软件包吗?
<Calendar
localizer={localizer}
events={allEvents}
startAccessor='start'
endAccessor='end'
views={['month']}
/>
enter image description here
onSelectEvent={handleEventSelection} 这个道具可以帮助您跟踪任何事件被点击的时间
您可以使用此代码。
const handleEventSelection = (e) => {
console.log(e, "Event data");
};
我想要一个可点击的功能,在点击日历上的事件时我可以编辑日期或事件标题。
可以用“react-big-calendar”这样做吗? 如果没有,你能推荐一些其他的软件包吗?
<Calendar
localizer={localizer}
events={allEvents}
startAccessor='start'
endAccessor='end'
views={['month']}
/>
enter image description here
onSelectEvent={handleEventSelection} 这个道具可以帮助您跟踪任何事件被点击的时间
您可以使用此代码。
const handleEventSelection = (e) => {
console.log(e, "Event data");
};