下面是一个使用Angular 9的ng-template的代码示例:
在组件的HTML模板中,定义一个ng-template并为其指定一个模板引用变量(templateRef):
This is a template example
在组件的类中,通过ViewChild装饰器获取对ng-template的引用:
import { Component, ViewChild, TemplateRef } from '@angular/core';
@Component({
selector: 'app-my-component',
templateUrl: './my-component.component.html',
styleUrls: ['./my-component.component.css']
})
export class MyComponent {
@ViewChild('myTemplate', { static: true }) myTemplate: TemplateRef;
}
然后,你可以在组件的模板中使用这个ng-template,比如在一个ng-container中使用ngTemplateOutlet指令来展示ng-template的内容:
这样,ng-template中定义的内容就会在ng-container中展示出来。
注意:ng-template也可以用来定义动态的模板,你可以在ng-template中使用*ngFor、*ngIf等结构性指令来动态生成内容。例如:
- {{ item }}
这样,ng-template中的*ngFor指令会根据传递的数据动态生成列表。