本文整理汇总了TypeScript中@angular/core.NgModuleFactoryLoader类的典型用法代码示例。如果您正苦于以下问题:TypeScript NgModuleFactoryLoader类的具体用法?TypeScript NgModuleFactoryLoader怎么用?TypeScript NgModuleFactoryLoader使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了NgModuleFactoryLoader类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的TypeScript代码示例。
示例1: fromPromise
load(parentInjector: Injector, path: string): Observable<LoadedRouterConfig> {
return fromPromise(this.loader.load(path).then(r => {
const ref = r.create(parentInjector);
return new LoadedRouterConfig(
ref.injector.get(ROUTES), ref.injector, ref.componentFactoryResolver);
}));
}
开发者ID:AngularLovers,项目名称:angular,代码行数:7,代码来源:router_config_loader.ts
示例2: openModal
public openModal() {
this.moduleLoader.load("./lazy/lazy.module#LazyModule")
.then((module: NgModuleFactory<any>) => {
const moduleRef = module.create(this.vcRef.parentInjector);
this.modalService.showModal(LazyComponent, {
moduleRef,
viewContainerRef: this.vcRef,
context: { isModal: true }
});
});
}
开发者ID:NativeScript,项目名称:tests-app-ng,代码行数:12,代码来源:lazy-load-modal.component.ts
示例3: loadModuleFactory
private loadModuleFactory(loadChildren: LoadChildren): Observable<NgModuleFactory<any>> {
if (typeof loadChildren === 'string') {
return from(this.loader.load(loadChildren));
} else {
return wrapIntoObservable(loadChildren()).pipe(mergeMap((t: any) => {
if (t instanceof NgModuleFactory) {
return of (t);
} else {
return from(this.compiler.compileModuleAsync(t));
}
}));
}
}
开发者ID:Cammisuli,项目名称:angular,代码行数:13,代码来源:router_config_loader.ts
示例4: load
load(): Promise<void> {
if (this.moduleRef) {
return Promise.resolve();
}
const path = 'src/app/dashboard/lazy-dashboard-tile/lazy-dashboard-tile.module#LazyDashboardTileModule';
return this
.loader
.load(path)
.then(moduleFactory => {
this.moduleRef = moduleFactory.create(this.injector).instance;
console.debug('moduleRef', this.moduleRef);
})
.catch(err => {
console.error('error loading module', err);
});
}
开发者ID:yperrin,项目名称:Experiments,代码行数:20,代码来源:lazy-dashboard-tile.service.ts
注:本文中的@angular/core.NgModuleFactoryLoader类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论