Angular 6:无法使用JIT编译

时间:2018-05-16 15:17:51

标签: javascript angular typescript

我正在尝试在我正在创建的动态组件中注入一个服务,但是当我尝试注入服务时,我收到了一个错误。我能够在使用AOT的所有其他组件中注入服务,但在使用JIT时则不能。这是代码。

import { Injectable } from '@angular/core';

@Injectable
export class ApplicantSvc
{
 name:string;  
}

private createComponentFromRaw(template: string){

  const tmpCmp = Component({ template })(class {

    constructor(private app :ApplicantSvc){}

  });

  // Now, also create a dynamic module.
  const tmpModule = NgModule({
    declarations: [tmpCmp],
    imports: [CommonModule],
    providers: [ApplicantSvc],

  })(class {});


  this.compiler.compileModuleAndAllComponentsAsync(tmpModule)
    .then((factories) => {
      const f = factories.componentFactories[0];
      this.cmpRef = f.create(this.injector, [], null, this.moduleRef);
      this.cmpRef.instance.name = 'my-dynamic-component';
      this.vc.insert(this.cmpRef.hostView);
    });
}

在上面的代码中,我为动态模块中的提供程序添加了ApplicantSvc,然后在动态组件构造函数中注入,但每当我尝试这样做时,我都会收到错误

  

错误错误:无法解析class_1的所有参数:(?)。 .....   ..... 在   JitCompiler.push ../ node_modules/@angular/compiler/fesm5/compiler.js.JitCompiler._loadModules   (compiler.js:22570)

1 个答案:

答案 0 :(得分:0)

我发现只需像变量一样传递服务就可以了

  this.compiler.compileModuleAndAllComponentsAsync(tmpModule)
    .then((factories) => {
      const f = factories.componentFactories[0];
      this.cmpRef = f.create(this.injector, [], null, this.moduleRef);
      this.cmpRef.instance.name = 'my-dynamic-component';
      ̶t̶h̶i̶s̶.̶v̶c̶.̶i̶n̶s̶e̶r̶t̶(̶t̶h̶i̶s̶.̶c̶m̶p̶R̶e̶f̶.̶h̶o̶s̶t̶V̶i̶e̶w̶)̶;̶
      ... = .        
});