如何动态添加新的FormControl?

时间:2018-05-27 12:51:53

标签: angular5 angular-forms

这是我的静态表单组:

this.quoteForm = fb.group({
            "senderAddress" : new FormControl(this.senderFormattedAddress, this.senderValiator ),
            "receiverAddress": new FormControl("", Validators.required )
        });

将来,我试图通过动态添加更多表单控件,但不能正常工作: 这是我的代码:

for (let label in this.mandate) {

    this.quoteForm = this.fb.group({
       this.mandate[label]: new FormControl()
    })

    this.mandate[label] = true; //*ngIf show the add field element
}
上面的

无法通过添加新的表单控件来工作。但输入字段单独可见,如何添加new FormControl

0 个答案:

没有答案