我看到了许多ElemenetRef和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
答案 0 :(得分:2)
ElementRef
就像document.getElementById('myId')
一样;
通过ElementRef
,您只能做一些装饰
TemplateRef
是一个嵌入式模板,您可以将其赋予角度以创建嵌入式视图。
*ngFor
相同,它将元素读取为TemplateRef
并多次注入以创建具有数据的视图
TemplateRef
不能用作.ts中CSS装饰的元素
答案 1 :(得分:1)
ElementRef
用于基本的DOM抽象。
我们可以访问DOM中存在的基本本机元素。
TemplateRef
用于访问模板中的DOM元素。
结构指令使用此TemplateRef。