Search code examples
angularangularjs-ng-repeat

Does ngRepeat exist in Angular 2?


I've read various issue tracker entries in relation to Angular 2 and its implementation of ng-repeat, but as it stands I haven't actually worked out if it actually exists yet.

Is it possible to use ng-repeat in angular 2?


Solution

  • Angular 2.0 Release

    my-component.ts:

    import { Component } from 'angular2/core';
    
    @Component({
      selector: 'my-component',
      templateUrl: './my-component.html'
    })
    export class MyComponent{
      public values: number[] = [1, 2, 3];
    }
    

    my-component.html:

    <div *ngFor='let value of values; trackBy: index;'>
      {{ value }}
    </div>