gpt4 book ai didi

javascript - 使用带有使用 *ngIf 动态构建的元素的验证器的 Angular 2 表单验证

转载 作者:行者123 更新时间:2023-11-30 11:39:43 24 4
gpt4 key购买 nike

我有一个表单,正在使用响应式表单进行验证。我可以让所有的验证工作,除了我有一些有条件地提供的输入,即使它们没有使用 *ngIf 提供给 View ,它们仍然使表单无法验证。仅当条件为真时,我怎么能说“Validators.required”。请看例子。

constructor(
private QRService:QRService,
fb: FormBuilder
){
this.title = 'My Form';
this.showDeliveryTypes = false;
this.complexForm = fb.group({
'itemnumber' : [null, Validators.required],
'dateofbirth' : [null, Validators.required],
'deliverytype' : [null, Validators.required],
'pickuplocation' : [null, Validators.required], //validates even if these aren't included using *ngIf
'paymentoptions' : [null, Validators.required] //validates even if these aren't included using *ngIf
})

};

如果 *ngIf 包含在表单中,我只想验证 pickuplocations 或 paymentoptions。

<form [formGroup]="complexForm" (ngSubmit)="findScript(complexForm.Form)">
<h2>Script Number</h2>
<input type="number" name="script" [(ngModel)]="itemno" (blur)="getScripts(itemno)" [formControl]="complexForm.controls['itemnumber']">
<h2>Date of birth</h2>
<input type="date" name="dob" [(ngModel)]="dateofbirth" (blur)="getScripts(scriptno, dateofbirth)" [formControl]="complexForm.controls['dateofbirth']" required>
<div *ngIf="showDeliveryTypes" name="deliverytypes">
<h3>Delivery Method</h3>
<select #select [(ngModel)]="selectedId" (change)="validateDeliveryTypes(select.value)" name="deliveryoptions" [formControl]="complexForm.controls['deliverytype']">
<option *ngFor="let item of qrData.DeliveryTypes" [value]="item.DeliveryTypeId">{{item.DeliveryTypeName}}</option>

</select>
</div>
<div *ngIf="showPickupLocations" name="pickuptypes">
<h3>Pickup Locations</h3> //I don't want to validate these UNLESS the *ngIf is true
<select #select [(ngModel)]="selectedPickupId" (change)="checkVals(select.value)" name="pickupoptions" [formControl]="complexForm.controls['pickuplocation']">
<option *ngFor="let item of selectedItem.PickupLocations" [value]="item.PickupLocationId">{{item.PickupLocationName}}</option>

</select>
</div>
<div *ngIf="showPaymentOptions" name="paymentoptions">
<h3>Payment Types</h3> //I don't want to validate these UNLESS the *ngIf is true
<select #select [(ngModel)]="selectedPayment" (change)="checkVals(select.value)" name="selectpaymentoptions" [formControl]="complexForm.controls['paymentoptions']">
<option *ngFor="let item of selectedItem.PaymentTypes" [value]="item.PaymentTypeId">{{item.PaymentTypeName}}</option>

</select>
</div>
<button (click)="findScript()" type="submit" name="submitbutton" [disabled]="!complexForm.valid">Find Prescription</button>
</form>

我对 Angular2 还是很陌生,可以在 Angular 1 中轻松做到这一点,但我真的很想在未来的开发中迁移到 Angular2。

最佳答案

一种方法是在从 DOM 中隐藏表单字段时禁用它。禁用表单控件,完全从表单中排除该表单字段,这正是您想要的。如果您确实需要在提交时获取包含在表单中的值,您可以使用方法 getRawValue。但否则,表单字段将被完全排除。

由于您的表单非常复杂,我已经为您设置了一个简单的示例代码和插件,我们在其中禁用姓氏并将其从 DOM 中删除。

由于不知道如何切换 showPickupLocationsshowPaymentOptions,我将在这里使用一个按钮来切换姓氏的可见性。所以表单看起来像这样:

<button (click)="toggle()">Toggle lastname</button>
<form [formGroup]="myForm">
<label>firstname: </label>
<input formControlName="firstname"/>
<div *ngIf="toggl">
<label>lastname: </label>
<input formControlName="lastname"/>
</div>
</form>

当我们在 DOM 中切换姓氏可见性时,我们也会切换表单域的启用和禁用:

toggle() {
this.toggl = !this.toggl;
let control = this.myForm.get('lastname')
control.enabled ? control.disable() : control.enable()
}

如前所述,这从表单中排除了该字段,因此验证不会有问题。在此演示 plunker 中,您可以看到切换如何从表单值中完全删除 lastname 字段。

Demo

关于javascript - 使用带有使用 *ngIf 动态构建的元素的验证器的 Angular 2 表单验证,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43188745/

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