Built-in Structural Directives
*ngIf
This adds control flow to the page for hiding and showing content based on conditional logic.
<div *ngIf='someLogic()'>
Some content to show
</div>
*ngFor
This adds control flow to the page for looping over content like a for loop.
<div *ngFor='let obj of objects'>
<div>{{obj.PropertyHere}}</div>
</div>
No comments:
Post a Comment