gpt4 book ai didi

Angular 7 - 仅在选中复选框时验证输入字段

转载 作者:行者123 更新时间:2023-12-04 11:47:35 25 4
gpt4 key购买 nike

我正在使用 angular 7 并且我有一个包含两个输入字段的表单,而第一个总是需要的,只有在选中复选框时才需要第二个。

我正在尝试将 FormGroup 与自定义验证器一起使用:

<form [formGroup]="exampleForm">
<mat-form-field>
<input matInput placeholder="first" formControlName="first">
</mat-form-field>
<mat-checkbox [(ngModel)]=" checked" [ngModelOptions]="{standalone:true}">Make second input field required</mat-checkbox>
<mat-form-field>
<input matInput placeholder="second" formControlName="second">
</mat-form-field>
</form>



exampleForm: FormGroup;
checked: boolean;

ngOnInit() {
this.exampleForm = new FormGroup({
'second': new FormControl('', [this.validateIfChecked()]),
'first': new FormControl('example', [Validators.required])
});
}


validateIfChecked(): ValidatorFn {
return (control: AbstractControl): {
[key: string]: any
} | null => {
if (this.checked) {
return control.value ? null : {
'err': true
};
}
return null;
}
}


问题是只有当两个输入字段中的文本更新时才执行验证,而如果我选中/取消选中复选框,状态不会改变,并且强制验证我必须更改第二个文本框中的文本。

Here你可以在 stackblitz 上看到一个例子:如果你选中复选框,状态不会改变。

当复选框状态更改时,如何强制验证?

最佳答案

您需要使用跨域验证。在表单组中包含复选框

<form [formGroup]="exampleForm">
<mat-form-field>
<input matInput placeholder="first" formControlName="first">
</mat-form-field>
<mat-checkbox formControlName="checked">Make second input field required</mat-checkbox>
<mat-form-field>
<input matInput placeholder="second" formControlName="second">
</mat-form-field>
</form>
ngOnInit() {
this.exampleForm = new FormGroup({
'second': new FormControl(''),
'checked': new FormControl(false),
'first': new FormControl('example')
}, [this.validateIfChecked()]);
}


validateIfChecked(): ValidatorFn {
return (form: FormGroup): ValidationErrors | null => {
const checked = form.get('checked');
const second= form.get('second');
if (checked && !second) {
return {
'err': true
};
}
return null;
}
}
在这种情况下,如果 'checked' 为真,则需要 'second'
如有疑问 https://angular.io/guide/form-validation#cross-field-validation

关于Angular 7 - 仅在选中复选框时验证输入字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54811693/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com