我已经设置了一个嵌套的表单组。到目前为止一切正常。但是,当有嵌套的表单元素时,我不确定如何正确设置验证警报。
发生的一件特别事情是在构建期间我收到错误: 财产'控制'类型' AbstractControl'
上不存在这是我的代码:
import { Component, OnInit } from '@angular/core';
import { Validators, FormControl, FormGroup, FormBuilder } from '@angular/forms';
@Component({
selector: 'my-app',
templateUrl: './app.component.html',
styleUrls: [ './app.component.css' ]
})
export class AppComponent implements OnInit {
name = 'Reactive Form - Nested FormGroups';
myForm: FormGroup;
constructor(
private fb: FormBuilder
) {}
ngOnInit() {
this.buildForm();
}
buildForm() {
this.myForm = this.fb.group({
user : this.fb.group({
'firstName': new FormControl('', Validators.required),
'lastName': new FormControl('', Validators.required)
}),
'bio': new FormControl()
});
}
}
我的问题是验证看到div与class =" validation-message"
<hello name="{{ name }}"></hello>
<form [formGroup]="myForm">
<div class="my-box" formGroupName="user">
<label>
First Name
<input type="text" formControlName="firstName">
<div class="validation-message" *ngIf="!myForm.controls.user.controls['firstName'].valid && myForm.controls.user.controls['firstName'].dirty">
This field is invalid
</div>
</label>
</div>
<div class="my-box" formGroupName="user">
<label>
Last Name
<input type="text" formControlName="lastName">
</label>
</div>
<div class="my-box">
<label for="bio" class="block-me">Bio</label>
<textarea formControlName="bio"></textarea>
</div>
</form>
<p>
Data from form: {{ myForm.value | json }}
</p>
答案 0 :(得分:3)
你的TypeScript代码中有拼写错误:
user : this.fb.group({
'firstname': new FormControl('', Validators.required),
'lastName': new FormControl('', Validators.required)
})
字段firstname
全部小写,但在HTML中是camelcase:
<input type="text" formControlName="firstName">
字段名称区分大小写。
在你的情况下你有TypeScript应该像这样:
user : this.fb.group({
'firstName': new FormControl('', Validators.required),
'lastName': new FormControl('', Validators.required)
})
<强>更新强>
要在HTML中访问user
表单组,您可以在TypeScript中创建公共属性:
public get userGroup(): FormGroup {
return this.myForm.get('user') as FormGroup;
}
现在您可以通过以下方式使用HTML:
<div class="validation-message" *ngIf="!userGroup.controls['firstName'].valid && userGroup.controls['firstName'].dirty">
This field is invalid
</div>
答案 1 :(得分:1)
修复错误的解决方案&#34;属性&#39;控制&#39;在类型&#39; AbstractControl&#39;&#34;上不存在是将typescript文件中的嵌套表单项分隔为自己的控件。代码如下:
import { Component, OnInit } from '@angular/core';
import { Validators, FormControl, FormGroup, FormBuilder } from '@angular/forms';
@Component({
selector: 'my-app',
templateUrl: './app.component.html',
styleUrls: [ './app.component.css' ]
})
export class AppComponent implements OnInit {
name = 'Reactive Form - Nested FormGroups';
myForm: FormGroup;
userControl: FormGroup;
constructor(
private fb: FormBuilder
) {}
ngOnInit() {
this.buildForm();
}
buildForm() {
this.userControl = this.fb.group({
'firstName': new FormControl('', Validators.required),
'lastName': new FormControl('', Validators.required)
})
this.myForm = this.fb.group({
user : this.userControl,
'bio': new FormControl()
});
}
}
Html文件......
<hello name="{{ name }}"></hello>
<form [formGroup]="myForm">
<div class="my-box" formGroupName="user">
<label>
First Name
<input type="text" formControlName="firstName">
<div class="validation-message" *ngIf="!userControl.controls['firstName'].valid && userControl.controls['firstName'].dirty">
This field is invalid
</div>
</label>
</div>
<div class="my-box" formGroupName="user">
<label>
Last Name
<input type="text" formControlName="lastName">
<div class="validation-message" *ngIf="!userControl.controls['lastName'].valid && userControl.controls['lastName'].dirty">
This field is invalid
</div>
</label>
</div>
<div class="my-box">
<label for="bio" class="block-me">Bio</label>
<textarea formControlName="bio"></textarea>
</div>
</form>
<p>
Data from form: {{ myForm.value | json }}
</p>