为什么我得到一个Uncaught ReferenceError: Cannot access 'NgxMatCalendar' before initialization
?
我使用了一个shared.module.ts
我使用与我组件相关的导入和导出的地方,并且我有我app.module.ts
导入SharedModule
. 但是,我已经导入了接下来的两件事
import { NgxMatDatetimePickerModule, NgxMatTimepickerModule } from 'ngx-mat-datetime-picker';
在我的NgModule 导入中:
NgxMatDatetimePickerModule,
NgxMatTimepickerModule,
但可能出了点问题,我不知道为什么。
错误说:
checkout-overview.component.ts:13 中的代码行是:
@Input() cartId: string;
edit-event-dialog.component.ts:24 中的代码行在其构造函数参数中:
@Inject(MAT_DIALOG_DATA) public data: any,
我不知道为什么会出错。谁能帮我这个?