Answers for "ngfor with ngif condition"

3

*ngIf and *ngFor in same container

<ng-container *ngIf="show">
  <div *ngFor="let thing of stuff">
    {{log(thing)}}
    <span>{{thing.name}}</span>
  </div>
</ng-container>
Posted by: Guest on December-01-2020
2

ngFor and ngIf

<li *ngFor="let user of users; index as i; first as isFirst">
  {{i}}/{{users.length}}. {{user}} <span *ngIf="isFirst">default</span>
</li>
Posted by: Guest on April-17-2021

Browse Popular Code Answers by Language