gpt4 book ai didi

angular - Angular react 形式的条件形式验证

转载 作者:太空狗 更新时间:2023-10-29 17:23:31 25 4
gpt4 key购买 nike

我正在尝试在 Angular 响应式(Reactive)表单上设置条件表单验证,需要一些帮助。

我有一个表单控件,用户可以在其中将其实体类型设置为个人或企业

<select formControlName="entity">
<option [value]="individual">Individual</option>
<option [value]="business">Business</option>
</select>

然后我有根据选择的实体显示或隐藏的表单输入:

<div *ngIf="myForm.controls.entity.value == individual>
<input formControlName="fullName" />
</div>

<div *ngIf="myForm.controls.entity.value == business>
<input formControlName="businessName" />
</div>

只有在选择了相应的实体时,如何才能使两个输入都成为必填项?

最佳答案

假设此 html 位于 formGroup 元素内,您可以使用属性 [formControl]="name_of_your_input_control"

<div [hidden]="isBusiness">
<input [formControl]="fullName" />
</div>

<div [hidden]="!isBusiness">
<input [formControl]="businessName" />
</div>

在你的 ts 类中:

创建表单后添加:

isBusiness:boolean = false;
//...
this.nameOfYourForm.valueChanges.subscribe((newForm) => {
this.isBusiness = (newForm.controls.entity.value == 'business');
if(this.isbusiness){
this.nameOfYourForm.controls.fullName.setValidators(/*your new validation here*/);
//set the validations to null for the other input
}else{
this.nameOfYourForm.controls.businessName.setValidators(/*your new validation here*/);
//set the validations to null for the other input
}
});

请注意,我将您的 *ngIf 更改为 [hidden],因为 *ngIf 将从您的模板中完全删除控件,其中 [hidden] 将只应用显示无。

您也可以在特定控件而不是整个表单上添加更改监听器,但想法是一样的。

关于angular - Angular react 形式的条件形式验证,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46653443/

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