当我尝试在 ConfirmBoxComponent 中打开材质对话框时出现以下错误。
未找到 ConfirmBoxComponent 的组件工厂。你把它添加到@NgModule.entryComponents 了吗?我已经在 entryComponents 列表中添加了 ConfirmBoxComponent
declarations: [
ConfirmBoxComponent
],
exports: [ConfirmBoxComponent],
entryComponents: [
ConfirmBoxComponent
],
包含 ConfirmBoxComponent 的模块是通过延迟加载技术加载的。
我正在使用最新版本的 Angular 和 Material
"@angular/core": "^5.0.0", "@angular/material": "^5.0.0-rc0"