我在我的angular(15)项目中使用fullcalendar(免费版本(6)).一旦用户点击日历中的某个日期,我需要显示关于这一天的一些信息.因此,我调用一个函数从数据库中检索这些信息,并以模态的形式显示给用户(现在我只是提醒它).
但是调用我的函数时,我得到了错误:
类型"CalendarOptions"上不存在属性"retrieveDataBase"
所以我想知道有没有办法把我的函数集成到fullcalendar中?
P.S.我的数据是巨大的,我不能显示它作为一个事件在不同的日子!
这是我的代码。
export class someComponent {
calendarOptions: CalendarOptions = {
plugins: [interactionPlugin],
dateClick: function(info) {
this.retrieveDataBase(info.dateStr); // Gives error!
},
}
retrieveDataBase(date: string):void{
this.dummyService.getdb(date).subscribe(
(response: any) => {
const { results } = response;
alert(results);
console.log(response);
},
(error: any) => {
console.log(error);
}
);
}
}
1条答案
按热度按时间eivgtgni1#
尝试用arrow函数替换该回调(这可能导致它基于词法作用域解析
this
,词法作用域随后将引用该类):