在angular5上,我尝试对我的大部分模块/组件进行相同的项目AOT编译......但我有一部分需要进行JIT编译。
对于第二部分,HTML来自Ajax请求并包含一些必须由angular编译的组件标记。要管理这部分,我使用看起来像这样的指令:
export class ArticleLiveDirective implements OnInit, OnChanges, OnDestroy {
// [...]
constructor(
private container: ViewContainerRef,
private compiler: Compiler
) { }
// [...]
private addHtmlComponent(template: string, properties: any = {}) {
this.container.clear();
//Force always rootDomElement.
const divTag = document.createElement('div');
divTag.setAttribute('id',this.currentId);
divTag.innerHTML = template;
template = divTag.outerHTML;
// We create dynamic component with injected template
@Component({ template })
class ArticleLIveComponent implements OnInit, OnChanges, OnDestroy {
constructor(
private articleService: ArticleService
) {}
ngOnInit() {}
ngOnChanges(changes: SimpleChanges) {}
ngOnDestroy() {}
goToPage($event: Event, pagination: string) {
this.articleService.askToChangeArticle(pagination);
//Stop propagation
$event.stopPropagation();
return false;
}
}
// we declare module with all dependencies
@NgModule({
declarations: [
ArticleLIveComponent
],
imports: [
BrowserModule,
MatTabsModule
],
providers: []
})
class ArticleLiveModule {}
// we compile it
const mod = this.compiler.compileModuleAndAllComponentsSync(ArticleLiveModule);
const factory = mod.componentFactories.find((comp) =>
comp.componentType === ArticleLIveComponent
);
// fetch instance of fresh crafted component
const component = this.container.createComponent(factory);
// we inject parameter.
Object.assign(component.instance, properties);
}
}
如您所见,我可以调用 addHtmlComponent 方法,以自定义HTML作为模板在运行时编译新组件。
我的模板如下:
<div>
<h2>Foo bar</h2>
<mat-tab-group>
<mat-tab label="Tab 1">Content 1</mat-tab>
<mat-tab label="Tab 2">Content 2</mat-tab>
</mat-tab-group>
<p>Other content</p>
一切顺利,直到我切换到AOT编译(我使用:https://github.com/angular/angular-cli/tree/master/packages/%40ngtools/webpack)
可能的原因: 我猜的主要原因是因为AOT编译删除&#34;编译器&#34;输出编译捆绑的Angular的一部分。 我尝试了什么 - 我试图直接在我的代码上要求它但仍然不存在。 - 我试着检查像角度(或角度材料)的网站如何处理它。但是不符合我的情况。实际上,两者都已经在AOT版本中编译了所有示例的版本。动态部分是&#34;只是&#34;样本周围的内容。
如果您想检查角度材料的作用方式: 每个组件的所有网站示例:https://github.com/angular/material2/tree/master/src/material-examples
可能是正确的方法,但我不知道如何调整它来管理动态标签内容。
编辑:我在此处添加了示例:https://github.com/yanis-git/aot-jit-angular(分支主管)
正如您将看到的,AOT编译从bundle中删除了wall编译器,结果如下:
Module not found: Error: Can't resolve '@angular/compiler/src/config'
我试图在AppModule上强制使用Compilater Factory,但仍然没有结果。
我在同一个仓库上有另一个样本,但是在分支&#34; lazy-jit&#34;,现在我将Compiler嵌入到输出的捆绑包中,但是新的错误出现在我身上:
ERROR Error: No NgModule metadata found for 'ArticleLiveModule'.
看起来与此问题完全相同:https://github.com/angular/angular/issues/16033
答案 0 :(得分:5)
试试这个:
import { Compiler, COMPILER_OPTIONS, CompilerFactory, NgModule } from '@angular/core';
import { BrowserModule, } from '@angular/platform-browser';
import { FormsModule } from '@angular/forms';
import { AppComponent } from './app.component';
import { HelloComponent } from './hello.component';
import { JitCompilerFactory } from '@angular/platform-browser-dynamic';
export function createCompiler(compilerFactory: CompilerFactory) {
return compilerFactory.createCompiler();
}
@NgModule({
providers: [
{ provide: COMPILER_OPTIONS, useValue: {}, multi: true },
{ provide: CompilerFactory, useClass: JitCompilerFactory, deps: [COMPILER_OPTIONS] },
{ provide: Compiler, useFactory: createCompiler, deps: [CompilerFactory] }
],
imports: [BrowserModule, FormsModule],
declarations: [AppComponent, HelloComponent],
bootstrap: [AppComponent]
})
export class AppModule { }
但是JitCompiler仍然无法创建依赖注入树。一世 怀疑@Injectable要从AOT部分删除。但我不能做你的 特技。
在上面的代码示例中,NgModule和Component没有装饰器。所以,这意味着没有 @Injectable ,他们也无法注入providers
。那么为什么我们不写 @NgModule 和 @Component @Injectable 装饰器,只将其写入服务 ?
因为,他们有一个装饰器(@ NgModule / @ Components),Services
没有。而他们的装饰者足以让Angular知道他们的可注射。
CODE EXAMPLE与DI。
<强>更新强>
创建了自定义包装器CustomNgModule
,CustomComponent
和CustomInjectable
装饰器:
export function CustomComponent(annotation: any) {
return function (target: Function) {
const component = new Component(annotation);
Component(component)(target);
};
}
export function CustomNgModule(annotation: any) {
return function (target: Function) {
const ngModule = new NgModule(annotation);
NgModule(ngModule)(target);
};
}
export function CustomInjectable() {
return function (target: Function) {
const injectable = new Injectable();
Injectable()(target);
};
}
使用
AOT
标志构建时,Angular-CLI看起来像清理捆绑包 来自原始装饰器的部分代码需要编译 动态。您希望
dynamically
在哪里使用组件编译模块 在具有AOT
功能的DI
中,替换原始装饰器 (NgModule/Injectable...
)使用自定义的一个来保留装饰器AOT
编译模式:
<强> lazy.module.ts:强>
@CustomComponent({
selector: 'lazy-component',
template: 'Lazy-loaded component. name: {{name}}.Service
{{service.foo()}}!',
//providers: [SampleService]
})
export class LazyComponent {
name;
constructor(public service: SampleService) {
console.log(service);
console.log(service.foo());
}
}
@CustomNgModule({
declarations: [LazyComponent],
providers: [SampleService]
})
export class LazyModule {
}
<强> app.component.ts:强>
...
ngAfterViewInit() {
this.compiler.compileModuleAndAllComponentsAsync(LazyModule)
.then((factories) => {
const f = factories.componentFactories[0];
const cmpRef = this.vc.createComponent(f);
cmpRef.instance.name = 'dynamic';
});
}
...
答案 1 :(得分:0)
我最近遇到过同样的问题,现在放弃了尝试解决的问题。
Afaik这不能(暂时)因为angular removes metadata on production build。
我们应该在问题8896关闭后再试一次。