我有一個使用ngModel在輸入中顯示的項目數組。我在一個基本控件(必需)的表單中使用ngFor指令。該列表不能正確顯示:它始終是顯示的數組的最後一項。 如果我使用鬍鬚語法來顯示輸入外的數組,那就沒問題。如果我刪除窗體並且控件沒問題。您可以在這裏測試:plunker。 下面是代碼:Angular2,ngModel和Forms:列表顯示不正確
@Component({
selector: "my-app",
providers: [],
template: "
<div>
<form [formGroup]="personControl">
<div *ngFor="let person of persons; let i = index">
index : {{i}}<br/>
label : {{person.label}}<br/>
value : {{person.value}}<br/>
<input type="text"
maxlength="30"
[id]="'label-'+person.id"
[(ngModel)]="person.label"
formControlName="personLabel"/>
<input type="text"
maxlength="30"
[id]="'value-'+person.id"
[(ngModel)]="person.value"
formControlName="personValue"/>
</div>
</form>
</div>
",
directives: [REACTIVE_FORM_DIRECTIVES]
})
export class App {
private personControl: FormGroup;
private persons : Person[];
constructor(private _formBuilder: FormBuilder) {
this.persons = PERSONS;
this.personControl = this._formBuilder.group({
personLabel : new FormControl("",
[
Validators.required
]),
personValue : new FormControl("",
[
Validators.required
])
});
}
}
export class Person {
id: number;
label: string;
value : number;
}
const PERSONS: Person[] = [
{ id: 1, label: "Person One", value : 10 },
{ id: 2, label: "Person Two", value : 20 },
{ id: 3, label: "Person Three", value : 30 }
];
我嘗試看看到formArrayName,但它似乎沒有幾個投入工作,你不能使用ngModel。 有人有想法嗎?
我使用角2.0.0-rc.4並形成0.2.0