Angular 5:没有路由的组件的延迟加载

问题描述 投票:9回答:1

在我的Web应用程序中,我有一个“条款和条件”弹出窗口,通过页脚链接点击打开(因此它是核心组件)。弹出窗口包含多个选项卡,每个选项卡都是一个非常大的模板文件。

我想知道是否可以将标签模板移动到单独的块并组织它们的延迟加载?我不确定我是否可以接受默认的Angular延迟加载,因为我不想为弹出窗口设置单独的路由。

angular angular5 lazy-loading
1个回答
5
投票

您可以等待用户单击该链接,并在Click事件发生后立即在视图中加载所需的组件。要记住的事情:

  1. 您需要在视图中为组件定义占位符。
  2. 条款和条件组件需要定义为其模块的入口级组件或使用它的模块。 entryComponents: [ ChildComponent ],
  3. 确保引用组件中的占位符并动态附加术语和条件组件。 <div> <ng-template #viewContainerRef></ng-template> </div>

@ViewChild('viewContainerRef', { read: ViewContainerRef }) VCR: ViewContainerRef;

并动态创建组件:

createComponent() {

    let componentFactory = this.CFR.resolveComponentFactory(ChildComponent);
    let componentRef: ComponentRef<ChildComponent> = this.VCR.createComponent(componentFactory);
    let currentComponent = componentRef.instance;

    currentComponent.selfRef = currentComponent;
  // to track the added component, you can reuse this index to remove it later
    currentComponent.index = ++this.index; 

    // providing parent Component reference to get access to parent class methods
    currentComponent.compInteraction = this;

}

这里有一个例子:https://add-or-remove-dynamic-component-parent-child.stackblitz.io

© www.soinside.com 2019 - 2024. All rights reserved.