Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the difference between *ngIf and [hidden]?

Tags:

angular

Say I check it against and expression, then aren't these two same ?

<div *ngIf="expression">{{val}}</div>  <div [hidden]="!expression">{{val}}</div> 
like image 505
ishandutta2007 Avatar asked Mar 26 '17 21:03

ishandutta2007


People also ask

What is the difference between * ngIf vs hidden?

ngIf will comment out the data if the expression is false. This way the data are not even loaded, causing HTML to load faster. [hidden] will load the data and mark them with the hidden HTML attribute. This way data are loaded even if they are not visible.

What is the difference between * ngIf and ngIf?

What is the difference between ngIf and *ngIf in Angular? ngIf is the directive. Because it's a structural directive (template-based), you need to use the * prefix to use it into templates. *ngIf corresponds to the shortcut for the following syntax (“syntactic sugar”):

What is hidden in Angular?

The DOM representation of the hidden attribute is a property also called hidden , which if set to true hides the element and false shows the element. Angular doesn't manipulate HTML attributes, it manipulates DOM properties because the DOM is what actually gets displayed.

What is the use of * in ngIf?

The asterisk is "syntactic sugar". It simplifies ngIf and ngFor for both the writer and the reader. Under the hood, Angular replaces the asterisk version with a more verbose form.


2 Answers

There is actually a performance difference between them:

ngIf will comment out the data if the expression is false. This way the data are not even loaded, causing HTML to load faster.

[hidden] will load the data and mark them with the hidden HTML attribute. This way data are loaded even if they are not visible.

So [hidden] is better used when we want the show/hide status to change frequently, for example on a button click event, so we do not have to load the data every time the button is clicked, just changing its hidden attribute would be enough.

Note that the performance difference may not be visible with small data, only with larger objects.

like image 92
kitsiosk Avatar answered Oct 21 '22 09:10

kitsiosk


ngIf is a structural directive, it creates/destroys content inside the DOM. The second statement just hides/shows the content with css, i.e. adding/removing display:none to the element's style.

What are structural directives?

Structural directives are responsible for HTML layout. They shape or reshape the DOM's structure, typically by adding, removing, or manipulating elements.


In the first case if expression is false then div and it's content won't be created. In the second case div and content are always created but they are not visible if the expression is false.

like image 44
Roman C Avatar answered Oct 21 '22 09:10

Roman C