我尝试迭代表单控件但遇到了一些问题。我使用Angular2中的FormBuilder。
我的控制器中有以下代码:
ngOnInit() {
let data = this.dataSet[this.key];
this.form = this._fb.group({});
Object.keys(data).forEach(name => {
this.form.addControl(name, new FormControl());
this.form.controls[name].setValue(data[name]);
});
console.log(this.form);
}
在控制台上提供以下输出:
FormGroup
...
controls: Object
database1: FormControl
...
_value: Object
accessHost: "some host here"
accessKey: "the key here"
....
database2: FormControl
...
_value: Object
accessHost: "some host here"
accessKey: "the key here"
到目前为止看起来还不错。 HTML代码:
<form [formGroup]="form" (ngSubmit)="onSave(form)">
<div *ngFor="let ups of form.controls | keyVal; let i=index">
{{ups.key}}
<div class="form-group">
<input class="form-control" formControlName="{{ups.key}}">
</div>
</div>
</form>
但这部分不起作用:
<input class="form-control" formControlName="{{ups.key}}">
当我检查{{ups.key}}的值时,即“database1”。在这种情况下,“database1”不是FormControlName吗?
感谢您的帮助
答案 0 :(得分:1)
您需要将formControlName属性绑定到表达式:
<input class="form-control" [formControlName]="ups.key" />
注意[] arround属性。 一个好的开始就是按照@kcp
的建议来看看这本食谱:Dynamic Form