是否可以手动实例化角度2中的组件

前端之家收集整理的这篇文章主要介绍了是否可以手动实例化角度2中的组件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在角度2中,是否可以手动实例化组件A,然后将其传递并在组件B的模板中渲染?
是的,这是支持的.您需要一个ViewComponentRef,例如可以通过将其注入构造函数或使用@ViewChild(‘targetname’)查询和也可以注入的ComponentResolver来获取.

例如,https://stackoverflow.com/a/36325468/217408代码示例允许使用* ngFor动态添加组件

@Component({
  selector: 'dcl-wrapper',template: `<div #target></div>`
})
export class DclWrapper {
  @ViewChild('target',{read: ViewContainerRef}) target;
  @Input() type;
  cmpRef:ComponentRef;
  private isViewInitialized:boolean = false;

  constructor(private resolver: ComponentResolver) {}

  updateComponent() {
    if(!this.isViewInitialized) {
      return;
    }
    if(this.cmpRef) {
      this.cmpRef.destroy();
    }
   this.resolver.resolveComponent(this.type).then((factory:ComponentFactory<any>) => {
      this.cmpRef = this.target.createComponent(factory)
    });
  }

  ngOnChanges() {
    this.updateComponent();
  }

  ngAfterViewInit() {
    this.isViewInitialized = true;
    this.updateComponent();  
  }

  ngOnDestroy() {
    if(this.cmpRef) {
      this.cmpRef.destroy();
    }    
  }
}
原文链接:https://www.f2er.com/angularjs/143248.html

猜你在找的Angularjs相关文章