0

我正在遵循 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) { }

}
4

1 回答 1

1

您的组件 HTML 应该是:-

<div class="ad-banner-example">
              <h3>Advertisements</h3>
              <ng-template ad-host></ng-template>
            </div>

你的组件 Ts 应该有:-

@ViewChild(AdDirective, {static: true}) adHost: AdDirective;

您 AdhostDirective 应该在您的模块的声明中。

你应该调用 this.loadComponent(); 在 ngoninit.

于 2020-05-29T14:40:06.907 回答