我使用ngModel在输入中显示了一系列项目.我在带有基本控件的表单中使用了ngFor指令(必需).列表不能正确显示:它始终是显示的数组的最后一项.
如果我使用胡子语法在输入外显示数组,那没关系.如果我删除表单和控件,它没关系.
你可以在这里测试它:
plunker.
这是代码:
@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
最佳答案 formControlName =“personLabel”和formControlName =“personValue”必须是唯一的.他们正在使用最后一个标签和值,因为人们内部的最后一个对象超越了之前的对象.
您必须为每个定义一个唯一的FormControl:
this.personControl = new FormGroup({
personLabel0 : new FormControl('',
[
Validators.required
]),
personValue0 : new FormControl('',
[
Validators.required
]),
personLabel1 : new FormControl('',
[
Validators.required
]),
personValue1 : new FormControl('',
[
Validators.required
]),
personLabel2 : new FormControl('',
[
Validators.required
]),
personValue2 : new FormControl('',
[
Validators.required
])
});
您可以使用以下函数动态调整formControlName:
public getName(word, i) {
return "person" + word + i;
}
您可以从模板中调用该函数:
<div *ngFor="let p of persons; let i = index">
index : {{i}}<br/>
label : {{p.label}}<br/>
value : {{p.value}}<br/>
<input type="text"
maxlength="30"
[id]="'label-'+p.id"
[(ngModel)]="p.label"
formControlName="{{getName('Label', i)}}"
placeholder="{{p.id}}"/>
<input type="text"
maxlength="30"
[id]="'value-'+p.id"
[(ngModel)]="p.value"
formControlName="{{getName('Value', i)}}"/>
</div>
我在FormGroup中还没有经验,所以我不知道是否有办法将新FormControls动态地推送到FormGroup(personControl)对象上,不断调整名称.如果没有,会建议不要使用“模型驱动”表格.
Plunker:https://plnkr.co/edit/ERWA6GKX9VYADouPb6Z2?p=preview