Structural Directive
<h1 *ngIf="book != null">{{ book.title }}</h1><ng-template [ngIf]="book != null">
<h1>{{ book.title }}</h1>
</ng-template>export class SomeStructuralDirective {
constructor(
private _templateRef: TemplateRef,
private _viewContainerRef: ViewContainerRef
) {
}
hide() {
this._viewContainerRef.clear();
}
show() {
this._viewContainerRef.createEmbeddedView(this._templateRef);
}
}Mis à jour