不使用 CalendarEvent 从 Mysql 获取数据到 Angular-Calendar

fetch data from Mysql to Angular-Calendar without using CalendarEvent

我使用 that thread 实现了日历。

我想查阅从 MySqlCalendar.

的数据

我在 MySql 上保存了名为 shedule:

的实体的数据
export class Schedule
{
    code: number;
    clas: string;
    room: string;
    teacher: string;
    module: string;
    startDate: Date;
    endDate: Date;
}

我在问我是否可以在日历上显示该实体(日程)的详细信息?

可以不使用 CalendarEvent ?.

非常感谢。

为了显示 Angular-Calendar 上的活动,我必须使用 CalendarEvent。 没有文档允许直接从 schedule 这样的实体获取数据。 为了解决我的问题,在这种情况下我必须像使用桥梁一样使用 CalendarEvent