我已经阅读了与Angular 2相关的各种问题跟踪器条目及其ng-repeat的实现,但是就目前而言,如果它实际存在,我实际上并未解决。
是否可以在角度2中使用ng-repeat
?
答案 0 :(得分:45)
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>
答案 1 :(得分:3)
更新:此评论现已过期,请参阅已接受的答案
好的,现在,以下工作。
/// <reference path="typings/angular2/angular2.d.ts" />
import {Component, View, For, bootstrap} from 'angular2/angular2';
// Annotation section
@Component({
selector: 'itemlist'
})
@View({
directives: [For]
template: `<h2 (click)="onClick()">Hello {{ name }}</h2><ul><li *for="#item of items">{{item.name}}</li></ul>`
})
// Component controller
class ItemList {
name: string;
items: array;
constructor() {
this.name = 'Sub';
this.items = [];
this.addItem("Dog 0");
this.addItem("Dog 1");
this.addItem("Dog 2");
}
addItem(name){
this.items.push({id: this.items.length, name: name});
}
onClick() {
console.log(this.items);
this.addItem("Dog "+this.items.length);
}
}
我缺少什么
您需要导入For
(第3行)
您需要声明For
对相关组件的依赖关系(第9行)
&#34; ng-repeat&#34;的正确语法目前是*for="#item of items"
在开发过程中似乎已经发生了很大变化,所以如果它再次发生变化我也不会感到惊讶。
答案 2 :(得分:3)
从alpha 28到30,它的语法如下:
import { NgFor } from 'angular2/angular2';
@View({ directives: [NgFor] })
<div *ng-for="#item of items">
答案 3 :(得分:0)
对于8号角及以上,正确的语法是
<ul>
<li *ngFor="let hero of heroes">
{{ hero }}
</li>
</ul>