我见过很多 ElemenetRef 和 TemplateRef 的例子,这让我更加困惑。
- ElementRef 和 TemplateRef 有什么区别为什么我们应该使用一个而不是另一个
HTML
<ng-template #element>
<div style="border:solid 3px yellow;width:250px;
height:250px;position:relative;top:0px;">
this is my element
</div>
</ng-template>
<ng-container #template>
</ng-container>
.ts 文件
@ViewChild('element', { read: TemplateRef }) element: TemplateRef<any>;
@ViewChild('template', { read: ViewContainerRef }) template: ViewContainerRef;
ngAfterViewInit() {
this.template.createEmbeddedView(this.element);
}
现在,如果我将上面的代码更改为使用 ElementRef,那么它也可以正常工作
@ViewChild('element', { read: ElementRef }) element: ElementRef;
所以我的问题是,如果我可以通过使用 ElementRef 来实现相同的效果,我为什么要使用 TemplateRef