假设我像这样创建FormGroup
this.orderProductForm = this.formBuilder.group({
productList: []
});
this.addressForm = this.formBuilder.group({
shippingName: '',
shippingAddress: '',
shippingMobile: '',
});
之后我打电话给...
this.orderProductForm.enable();
this.addressForm.enable();
或
this.orderProductForm.disable();
this.addressForm.disable();
它不起作用,请帮助..
答案 0 :(得分:1)
在Angular中停用formControl
表示该值未显示在表单value()
或getRawValue()
中,并且不会跟踪对其的更改。它不会禁用附加到formControl
的HTML元素。
您可以通过设置其disabled
属性来禁用HTML元素。