NgIf is a built-in template directive that adds or removes parts of the DOM depending on if the expression passed to it is true or false:
<div *ngIf="userHasPet">
{{ user.pet.name }}
</div>
In the above, if userHasPet is true, then the div will be included in the DOM (it will be on the page), and if userHasPet is false, the div will be removed from the DOM (it won’t be on the page).
Like with *ngFor, the * character allows to create a template and allows for a shortcut to this syntax: template=“ngIf userHasPet”.
You can also pass in a more complex expression to *ngIf:
<div *ngIf="user.name.length > 6 && user.name.length < 10">
Long name {{ user.name }}, but not too long!
</div>
Thanks for learning with the DigitalOcean Community. Check out our offerings for compute, storage, networking, and managed databases.
While we believe that this content benefits our community, we have not yet thoroughly reviewed it. If you have any suggestions for improvements, please let us know by clicking the “report an issue“ button at the bottom of the tutorial.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!