我正在尝试向我的表单添加验证。
discount
字段不能为空,取值范围需要在 0 到 100之间time_from
,time_to
不能为空。我无法在time_from
和上触发验证过程time_to
。我使用 PrimeNG 日历组件。我发现p-calendar
验证与 . 配合得很好ngModule
,但我找不到任何表单组的解决方案。
组件(简化)
ngOnInit() {
this.buildForm();
}
buildForm(): void {
this.discountFG = this.fb.group({
discount: new FormControl('', [Validators.required, CustomValidators.range([0, 100])]),
time_from: new FormControl('', Validators.required),
time_to: new FormControl('', Validators.required)
});
this.discountFG.valueChanges
.subscribe(data => this.onValueChanged(data));
}
onValueChanged(data?: any) {
if (!this.discountFG) { return; }
const form = this.discountFG;
for (const field in this.formErrors) {
// clear previous error message (if any)
this.formErrors[field] = '';
const control = form.get(field);
if (control && control.dirty && !control.valid) {
const messages = this.validationMessages[field];
for (const key in control.errors) {
this.formErrors[field] += messages[key] + ' ';
}
}
}
}
模板(简化)
<p-calendar formControlname="time_from" [locale]="pl" dateFormat="yy-mm-dd" [monthNavigator]="true" [yearNavigator]="true"
yearRange="2010:2030" (blur)="setTimeFrom($event)" readonlyInput="true" required></p-calendar>
<p-calendar formControlname="time_to" [locale]="pl" dateFormat="yy-mm-dd" [monthNavigator]="true" [yearNavigator]="true"
yearRange="2010:2030" [minDate]="minDate" readonlyInput="true" required></p-calendar>
当前行为
验证器不会注意到是否选择了日期,因此,不会触发任何事件来捕获值变化,这意味着onValueChanged
认为time_from
并且time_to
未受影响。
我怎样才能解决这个问题 ?