如何在不使用this.resFormGroup.patientName.lastname.value
的情况下获得[ngModel]
的价值?
HTML name="resForm"
代码中[formGroup]="resFormGroup"
,#resNgForm="ngForm"
和<form>
的用途是什么?
我是否需要模板引用变量#resNgForm
,因为我有[formGroup]="resFormGroup"
?
这是我的组成部分:
// FormBuilder
this.resFormGroup = this.formBuilder.group({
patientName: this.formBuilder.group({
firstname: ['', Validators.required],
lastname: ['', Validators.required]
}),
address: this.formBuilder.group({
street: [],
zip: [],
city: []
})
});
这是我的模板:
<form name="resForm" [formGroup]="resFormGroup" (ngSubmit)="onSubmit()" #resNgForm="ngForm">
<fieldset formGroupName="patientName">
<legend>Name</legend>
<label>Firstname:</label>
<input type="text" formControlName="firstname" [(ngModel)]="myFirstName">
<label>Lastname:</label>
<input type="text" ***formControlName="lastname"***>
</fieldset>
<fieldset formGroupName="address">
<legend>Address</legend>
<label>Street:</label>
<input type="text" formControlName="street">
<label>Zip:</label>
<input type="text" formControlName="zip">
<label>City:</label>
<input type="text" formControlName="city">
</fieldset>
<button type="submit" class="btn btn-primary" [disabled]="!resNgForm.valid">Submit</button>
我的提交按钮:
onSubmit() {
console.log("Submit button pressed [ngModel: " + this.myFirstName + "] [Form: " + this.resFormGroup.controls["patientName"].dirty + "]");
}
使用[ngModel]
,我可以获得名字;我还可以访问dirty
formGroup
的{{1}}属性。
答案 0 :(得分:7)
基于本教程关于dynamic form,他们使用了一种非常简单的方法来显示整个表单的值而没有[ngModel]。
如何获取formBuilder表单值?答案是'this.myForm.value'。
例如:
onSubmit(model: ResCrud) {
console.log("Nested Control: " + JSON.stringify(this.resFormGroup.value));
}