ng-container
is a directive that is not loaded into the DOM by Angular. It's function is to group together other directives.
In the case of ngIf
it is used to group together different elements that all depend on the same flag.
<ng-container *ngIf="flag">
<div>1</div>
<div>2</div>
...
</ng-container>
If you only have one element there is not much grouping to do and you can place the *ngIf
directly on the element.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…