Difference between ng-template, ng-container, and ng-content

1) <ng-template></ng-template> :

==>    As the name suggests the <ngtemplate> is a template element that Angular uses with structural directives ( *ngIf, *ngFor, [ngSwitch], and custom directives). These template elements only work in the presence of structural directives, which help us to define a template that doesn’t render anything by itself, but conditionally renders them to the DOM. It helps us create dynamic templates that can be customized and configured.

<div> 
   Ng-template Content 
   <div *ngIf =”false else showNgTemplateContent”> 
      Shouldn't be displayed 
   </div>
</div>
 
<ng-template #showNgTemplateContent> Should be displayed
</ng-template>

In the above example, If the condition is false then we will show the text as “Shouldn’t be displayed” else will show ng-template content as “Should be displayed”.

2) <ng-container></ng-container> :

<div *ngIf="details">
  <div *ngFor="let info of details">
    {{ info.content }}
  </div>
</div>

//====================================  OR (this both will work) =========================================//

<ng-container *ngIf="details">
  <div *ngFor="let info of details">
    {{ info.content }}
  </div>
</ng-container>

3) <ng-content></ng-content> :

ng-content is used to project content into Angular components. You use the <ng-content></ng-content> tag as a placeholder for that dynamic content, then when the template is parsed Angular will replace that placeholder tag with your content.

For example, you have two components as parent and child component
and want to show some data in the child component from the parent component

In parent.component.html <app-child> selector is used to show data of the child component.

<app-child>
  <div> Child Component Details </div>
</app-child>

         If you check on your browser <div>Child Component Details</div> inside <app-child></app-child>would not be visible. What if we want to show this content? So this is where the ng-content directive comes into the picture. What we need to do is, just add “ng-content” inside the component template and it will find the content inside the directive tag and add it to that template at that particular place where we added the “ng-content” tag.

So instead of div, you do something similar with Angular components except you tell Angular where to display it in the parent template using ng-content.

In child.component.html:

<h1>Child Info</h1>
<ng-content></ng-content>

Now go to your browser again, and you are able to see this: <div>Child Component Details</div>

<ngcontent> accepts a select attribute, which allows us to sort of name our slot, to be more specific, it allows us to define the selector of our slot. It means “Replace me only if the element has a card-body attribute”. Then, we change our app component view to include the card-body attribute.

For example: In child.component.html  :

//============= In child.component.html: =============//

<h1>Child Info</h1>
<ng-content select="[input], [form-field]"></ng-content>


//============== In parent.component.html: ===============//

<app-child>
  <h1 input>Content1!</h3>
  <h2 form-field>Content2!</h2>
  <h3 input form-field>Content1 & Content2!</h1>
</app-child>

If you check your browser, all the heading tags will be visible from the child component with the help of <ng-content>.

To sum up, ng-content is used to display children in a template, ng-container is used as a non-rendered container to avoid having to add a span or a div, and ng-template allows you to group some content that is not rendered directly but can be used in other places of your template or your code.

 

//===================      Thanks for Reading!!!!!!!!         =================//

Submit a Comment

Your email address will not be published. Required fields are marked *

Subscribe

Select Categories