我正在遵循 Angular.io 上的广告横幅教程的所有步骤。但在所有设置结束后,我收到来自此组件和功能的错误:
Ad-banner.component TS
loadComponent() {
this.currentAdIndex = (this.currentAdIndex + 1) % this.ads.length;
const adItem = this.ads[this.currentAdIndex];
const componentFactory = this.componentFactoryResolver.resolveComponentFactory(adItem.component);
const viewContainerRef = this.adHost.viewContainerRef; ---->ERROR comes from this Line
viewContainerRef.clear();
const componentRef = viewContainerRef.createComponent(componentFactory);
(<AdComponent>componentRef.instance).data = adItem.data;
}
我正确获取了日志,英雄数据进入了我将显示广告的主页组件,但没有出现错误,所以任何人都可以解决我的问题吗?
编辑主要指令
import { Directive, ViewContainerRef } from '@angular/core';
@Directive({
selector: '[ad-host]'
})
export class AdDirective {
constructor(public viewContainerRef: ViewContainerRef) { }
}