我正在使用ngTemplateOutlet加载。但它多次加载一个模板。它正在加载正确的模板,但它执行多次loadTemplate()方法。
在 HTML :
中<table>
<thead>
</thead>
<tbody>
<ng-template [ngTemplateOutlet]="loadTemplate()"></ng-template>
</tbody>
</table>
<ng-template #template1>
<tr *ngFor="iteration">
<p>Hiii</p>
</tr>
</ng-template>
<ng-template #template2>
<tr *ngFor="iteration">
<p>Byee</p>
</tr>
</ng-template>
在我的 component.ts :
中@ViewChild('template1') template1: TemplateRef<any>;
@ViewChild('template1') template1: TemplateRef<any>;
loadTemplate(){
if (condition)
return this.template1;
return this.template2;
}
答案 0 :(得分:4)
[ngTemplateOutlet]="loadTemplate()"
每次更改检测运行时都会调用loadTemplate()
。
而是将loadTemplate()
的结果分配给字段并在绑定中使用该字段
[ngTemplateOutlet]="myTemplate"
然后更改检测,ngTemplateOutlet
指令可以看到没有更改,也不会重新初始化模板。
答案 1 :(得分:0)
另一种方法是:
<table>
<thead>
</thead>
<tbody>
<ng-template [ngTemplateOutlet]="condition ? template1 : template2"></ng-template>
</tbody>
</table>
<ng-template #template1>
<tr *ngFor="iteration">
<p>Hiii</p>
</tr>
</ng-template>
<ng-template #template2>
<tr *ngFor="iteration">
<p>Byee</p>
</tr>
</ng-template>