Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

NgForOf in Angular | What Is NgForOf in Angular?

What Is NgForOf in Angular?
Structural directives render a template for-each item in a collection and this directive is placed on an Element, which becomes the parent of the cloned templates.

The ngForOfdirective is generally used in the shorthand form *ngFor.
In the below example, the template to be rendered for each iteration is the content of an anchor element containing the directive.

The following example shows the shorthand syntax with some options, contained in an
  • element.
  • li *ngFor="let item of items; index as i; trackBy: trackByFn">...li>

    The shorthand form expands into a long form that uses the Ngforof selector on an element. The content of the element is the
  • element that held the short-form directive.

  • Here is the expanded version of the short-form example.
    ng-template ngFor let-item [ngForOf]="items" let-i="index" [ngForTrackBy]="trackByFn">
        li>...li>
    ng-template>

    Angular automatically expands the shorthand syntax as it compiles the template.


    This post first appeared on Programming, please read the originial post: here

    Share the post

    NgForOf in Angular | What Is NgForOf in Angular?

    ×

    Subscribe to Programming

    Get updates delivered right to your inbox!

    Thank you for your subscription

    ×