我有一个反应形式,在加载时不需要任何字段。如果选择了一个选项,将其他表单元素添加到formGroup中,则所有新显示的字段都是必需的。 如果昵称字段被隐藏,那么您应该能够提交表格。如果显示昵称,则需要昵称字段,并且在昵称字段已满之前禁用提交按钮。 以下是我想要做的一个示例。
我的问题是,一旦显示/隐藏表单元素,如何启用/禁用验证?
App.module.ts
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
import { AppComponent } from './app.component';
import { HelloComponent } from './hello.component';
@NgModule({
imports: [ BrowserModule, FormsModule, ReactiveFormsModule ],
declarations: [ AppComponent, HelloComponent ],
bootstrap: [ AppComponent ]
})
export class AppModule { }
App.component.ts
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 = 'My Reactive Form';
constructor(
private fb: FormBuilder
) {}
myForm: FormGroup;
showNick: boolean = false;
ngOnInit() {
this.myForm = this.fb.group({
'firstName': new FormControl(),
'nickName': new FormControl('', Validators.required),
'lastName': new FormControl()
})
}
toggleNick() {
this.showNick = !this.showNick;
}
}
app.component.html
<form [formGroup]="myForm">
<div class="my-box">
<label>
First Name
<input type="text" formControlName="firstName">
</label>
</div>
<div class="my-box nickname">
Nickname? <a (click)="toggleNick()">yes / no</a>
</div>
<div class="my-box" *ngIf="showNick">
<label>
Nickname
<input type="text" formControlName="nickName">
<span class="validation-message" *ngIf="!myForm.controls['nickName'].valid && myForm.controls['nickName'].dirty">
This field is invalid
</span>
</label>
</div>
<div class="my-box">
<label>
Last Name
<input type="text" formControlName="lastName">
</label>
</div>
<button [disabled]="myForm.invalid">Submit</button>
</form>
答案 0 :(得分:11)
在我的申请中,我有类似的要求。如果用户要求通过文本通知,则需要电话。否则电话号码是可选的。
我写了这个方法:
setNotification(notifyVia: string): void {
const phoneControl = this.customerForm.get('phone');
if (notifyVia === 'text') {
phoneControl.setValidators(Validators.required);
} else {
phoneControl.clearValidators();
}
phoneControl.updateValueAndValidity();
}
从此代码中调用它,该代码位于ngOnInit:
中 this.customerForm.get('notification').valueChanges
.subscribe(value => this.setNotification(value));
如果用户更改了通知字段(单选按钮),则会调用传入值的setNotification
方法。如果该值是&#39; text&#39;的通知,则会将手机的验证设置为必需。
否则会清除手机字段的验证。
然后必须调用updateValueAndValidity
以使用此新验证更新表单信息。
答案 1 :(得分:9)
即使对用户而言,这些字段也是隐藏的,但这些字段在反应式中是活动的因此,只需使用以下代码即可从反应式中禁用该字段
this.myForm.get("nickName").disable();
按如下所示更改功能toggleNick()
toggleNick() {
this.showNick = !this.showNick;
if(showNick) {
this.myForm.get("nickName").enable();
} else {
this.myForm.get("nickName").disable();
}
}
答案 2 :(得分:2)
我认为这样做的最佳选择是使字段成为初始形式的一部分,包含所有他们的验证,以及何时需要以编程方式禁用和启用字段或嵌套表单。
示例:https://stackblitz.com/edit/angular-ojebff
https://stackblitz.com/edit/angular-ojebff?embed=1&file=app/input-errors-example.html
答案 3 :(得分:0)
如果您有许多复杂形式的可选字段,我认为这些解决方案不可行。
我所做的就是这样:
export class MyComponent implements AfterViewChecked {
@ViewChildren(FormControlName) allFormControlInDOM: QueryList<FormControlName>;
// ...
ngAfterViewChecked(): void {
// We must disable the controls that are not in the DOM
// If we don't, they are used for validating the form
if (this.allFormControlInDOM) {
const controls: { [p: string]: AbstractControl } = this.myForm.controls;
for (const control in controls) {
if (controls.hasOwnProperty(control) && controls[control] instanceof FormControl) {
const found = this.allFormControlInDOM.find((item: FormControlName) => item.name === control);
if (found) {
controls[control].enable();
} else {
controls[control].disable();
controls[control].setValue(null);
}
}
}
}
}
// ...
}
我希望能对您有所帮助:)