无法在react-big-calendar中添加ISO格式的时间
我正在为我的React项目使用react-big-calendar。对于其他组件,我的格式化时间如下: 18:00。我意识到大日历适用于2019-3-12,但当我尝试添加18:00时,它会将事件视为全天事件。
'title': 'Meeting',
'start': new Date(2015-3-12-11-0-0-0),
'end': new Date(2015, 3, 12, 12, 30, 0, 0)
OR
'title': 'Meeting',
'start': new Date(2015-3-12, 11-0-0-0),
'end': new Date(2015, 3, 12, 12, 30, 0, 0)
OR
'title': 'Meeting',
'start': new Date(2015-3-12, 11:00),
'end': new Date(2015, 3, 12, 12, 30, 0, 0)
我想让它在适当的时间出现在议程视图中。
发布于 2019-07-23 10:12:54
我找到了一个方法:
'title': 'Meeting',
'start': new Date('2015-04-12T21:45'),
'end': new Date('2015-04-12T21:45'),
desc: 'Pre-meeting meeting, to prepare for the meeting'
https://stackoverflow.com/questions/57133471
复制