Form
由 FormGroupDirective
和 NgForm
实现的接口。
An interface implemented by FormGroupDirective
and NgForm
directives.
interface Form {
addControl(dir: NgControl): void
removeControl(dir: NgControl): void
getControl(dir: NgControl): FormControl
addFormGroup(dir: AbstractFormGroupDirective): void
removeFormGroup(dir: AbstractFormGroupDirective): void
getFormGroup(dir: AbstractFormGroupDirective): FormGroup
updateModel(dir: NgControl, value: any): void
}
说明
只用于 ReactiveFormsModule
和 FormsModule
中。
Only used by the ReactiveFormsModule
and FormsModule
.
方法
把控件添加到该表单中。 Add a control to this form. |
从该表单中移除控件。 Remove a control from this form. |
根据表单控件指令找到相应的 The control directive from which to get the |
往该表单中添加一组控件。 Add a group of controls to this form. |
从该表单中移除一组控件。 Remove a group of controls to this form. |
与指定的 The |
把指定控件的表单模型修改为新的值。 Update the model for a particular control with a new value. |