angglar元素-anglar指令教程-Anglar教程網

1738 ワード

転載してから http://www.ngui.cc/news/show-131.html
Anglarでは、私たちは通過できます。 View Child 装飾器は、ビューで定義されているテンプレート要素を取得してから使用します。 View ContinerRef オブジェクトの createembodView() メソッドを使用して、埋め込み表示を作成します。
import { Component, TemplateRef, ViewContainerRef, ViewChild, 
  AfterViewInit } from '@angular/core'; 
@Component({
  selector: 'app-root',
  template: `
    
      Hello, Semlinker!
    
  `,
}) 
export class AppComponent implements AfterViewInit{ 
@ViewChild('tpl')
  tplRef: TemplateRef<any>; 
 constructor(private vcRef: ViewContainerRef) {}

  ngAfterViewInit() { 
 this.vcRef.createEmbeddedView(this.tplRef);
  }
}