在我的Web应用程序中,我有一个“条款和条件”弹出窗口,通过页脚链接点击打开(因此它是核心组件)。弹出窗口包含多个选项卡,每个选项卡都是一个非常大的模板文件。
我想知道是否可以将标签模板移动到单独的块并组织它们的延迟加载?我不确定我是否可以接受默认的Angular延迟加载,因为我不想为弹出窗口设置单独的路由。
您可以等待用户单击该链接,并在Click事件发生后立即在视图中加载所需的组件。要记住的事情:
entryComponents: [
ChildComponent
],
<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