我已经阅读了关于angularjs 2.0的各种问题跟踪器条目,它是实现ng-repeat,但是由于它现在我实际上没有解决,如果它实际上存在!
那么,截至2015年5月28日,是否可以在anglejs 2.0中使用ng-repeat?
自AngularJS 2.0 Beta发行以来,正确的版本是:
原文链接:https://www.f2er.com/angularjs/143164.html我-component.js:
import {Component} from 'angular2/core'; @Component({ selector: 'my-component',templateUrl: 'my-component.html' }) export class MyComponent{ values: number[] = [1,2,3]; }
我-组件的HTML:
<div *ngFor='let value of values'> {{ value }} </div>