在 Angular 中,要实现懒加载模块无需路由,可以通过使用 ComponentFactoryResolver
和 ViewContainerRef
来动态加载组件。
首先,在你的模块中创建一个指令,用于实现懒加载功能。在指令的构造函数中注入 ComponentFactoryResolver
和 ViewContainerRef
。
import { Directive, Input, ViewContainerRef, ComponentFactoryResolver } from '@angular/core';
@Directive({
selector: '[lazyLoad]'
})
export class LazyLoadDirective {
@Input() lazyLoad;
constructor(
private viewContainerRef: ViewContainerRef,
private componentFactoryResolver: ComponentFactoryResolver
) { }
ngOnInit() {
this.loadComponent();
}
loadComponent() {
const componentFactory = this.componentFactoryResolver.resolveComponentFactory(this.lazyLoad);
this.viewContainerRef.createComponent(componentFactory);
}
}
然后,在你的模块中使用这个指令,并传入要懒加载的组件。
最后,在你的模块中定义要懒加载的组件。
import { Component } from '@angular/core';
@Component({
selector: 'app-lazy',
template: 'Lazy Component
',
})
export class LazyComponent { }
当你的模块加载时,LazyComponent
将会被动态加载并显示在指令所在的位置。
请注意,这种方法并不是真正的懒加载模块,而是懒加载组件。如果你想要实现真正的懒加载模块,你仍然需要使用 Angular 的路由机制来实现。
上一篇:Angular 懒加载路由