Does ngRepeat exist in Angular 2?

CT14.IT picture CT14.IT · May 28, 2015 · Viewed 40.8k times · Source

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?

Answer

rckd picture rckd · Dec 16, 2015

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>