我正在RC5中创建一个angular2应用,我想在其中动态加载组件。

在RC1中,我使用dynamicComponentLoader做如下操作:

@Component({
  moduleId: module.id,
  selector: 'generic-component',
  templateUrl: 'generic.component.html',
  styleUrls: ['generic.component.css']
})
export class GenericComponent implements OnInit {
  @ViewChild('target',{read:ViewContainerRef}) target;
  @Input('component-name') componentName:string;
  @Input('component-info') componentInfo:string;
  @Input('component-model') componentModel:Object;

  keysRegister:string[]=[
  'users',
  'employee'
  ];
  componentNames:string[]=[
  'UserComponent',
  'EmpComponent'
  ];

  constructor(private dcl:DynamicComponentLoader) {}

  ngOnInit() {
  }

  ngAfterViewInit(){
      let componentIndex=this.keysRegister.indexOf(this.componentName);
      this.dcl.loadNextToLocation(StandardLib[this.componentNames[componentIndex]],this.target)
    .then(ref=>{
        ref.instance.componentModel=this.componentModel;
    });
    console.log("GenericComponent...... "+this.componentName+" Loaded");

  }

}

每当我想加载组件时,我都会做:
<div *ngIf="columnModel" style="border:1px solid orange">
    <generic-component
        [component-name]="columnModel.componentName" <!-- I will pass *users* here -->
        [component-model]="columnModel.componentModel"
        [component-info]="columnModel.componentInfo"
    ></generic-component>
</div>

我尝试使用componentResolver,但无法使其正常工作。
有输入吗?
谢谢。

最佳答案

RC5中,您需要使用compileComponentAsync()中的Compiler方法。

这是一个简单的示例:

constructor(private _comp: Compiler) {}

ngAfterViewInit(): void {
    this._comp.compileComponentAsync(this.componentModel).then(a => this.target.createComponent(a));
}

这是来自地雷库的完整示例:

https://github.com/flauc/ng2-simple-components/blob/master/src/modal/modal.component.ts

08-07 22:17