Startdate 和 Enddate 不能代替 FullCalendar 中的开始和结束

Startdate and Enddate is not working in place of start and end in FullCalendar

我在我的项目中使用 React fullCalendar 组件,我的数据库是 SQL 服务器。

fullCalendar 需要 start、end、fullDay... 参数来在其上呈现事件。

我面临的问题是 SQL 服务器 'end' 是保留关键字,我不能使用列名作为结尾。这将是什么解决方案。我尝试使用开始日期、结束日期,但它没有呈现。下面是我的 JSON 数组。

{id: 12, title: 'Product Proposal', startdate: '2021-03-23T00:25:00.000Z', endDate: '1900-01-01T00:00:00.000Z', …}
{id: 13, title: 'First Meeting', startdate: '2021-03-23T00:35:00.000Z', endDate: '1900-01-01T00:00:00.000Z', …}
{id: 14, title: 'Basic Meeting', startdate: '2021-03-23T00:38:00.000Z', endDate: '2021-04-02T12:00:00.000Z', …}

像这样的东西会起作用。请使用您的其他列等进行扩展

SELECT id, title, startdate AS [start], endDate AS [end] FROM yourtable