Я знаю, що є багато таких самих питань, які вже розміщені в переповненні стека, і я спробував різні рішення, щоб уникнути помилки під час виконання, але жодне з них не працює для мене.
Код компонента та HTML
export class TestComponent implements OnInit, AfterContentChecked {
@Input() DataContext: any;
@Input() Position: any;
sampleViewModel: ISampleViewModel = { DataContext: : null, Position: null };
constructor(private validationService: IValidationService, private modalService: NgbModal, private cdRef: ChangeDetectorRef) {
}
ngOnInit() {
}
ngAfterContentChecked() {
debugger;
this.sampleViewModel.DataContext = this.DataContext;
this.sampleViewModel.Position = this.Position;
}
<div class="container-fluid sample-wrapper text-center" [ngClass]="sampleViewModel.DataContext?.Style?.CustomCssClass +' samplewidget-'+ sampleViewModel.Position?.Columns + 'x' + sampleViewModel.Position?.Rows">
//some other html here
</div>
Зверніть увагу: Цей компонент завантажується динамічно за допомогою DynamicComponentLoader
Після усунення несправностей я виявив кілька проблем
Перш за все цей дочірній компонент завантажується динамічно за допомогою DynamicComponentResolver і передаючи вхідні значення, як показано нижче
ngAfterViewInit() {
this.renderWidgetInsideWidgetContainer();
}
renderWidgetInsideWidgetContainer() {
let component = this.storeFactory.getWidgetComponent(this.dataSource.ComponentName);
let componentFactory = this._componentFactoryResolver.resolveComponentFactory(component);
let viewContainerRef = this.widgetHost.viewContainerRef;
viewContainerRef.clear();
let componentRef = viewContainerRef.createComponent(componentFactory);
debugger;
(<IDataBind>componentRef.instance).WidgetDataContext = this.dataSource.DataContext;
(<IDataBind>componentRef.instance).WidgetPosition = this.dataSource.Position;
}
Навіть якщо я змінив свій дочірній компонент html, як показано нижче, я отримую цю саму помилку. Просто додайте кутовий атрибут ngclass
<div class="container-fluid ds-iconwidget-wrapper text-center" [ngClass]="Sample">
</div>
Моя прив'язка даних і все працює нормально. Чи потрібно щось робити на батьківському компоненті? Я вже пробував усі життєві події в дочірньому компоненті
TestComponent
?