我正在处理有角度的反应形式,我需要比较开始日期“开始日期”和结束日期“结束日期”,两个控件都在“dateLessThan”函数中验证,但问题是我不知道如何要求控制正在评估
//Some stuff
public fechaInicio = new FormControl('', [
Validators.required
, this.dateLessThanTo
]);
public fechaFin = new FormControl('', [
Validators.required
, this.dateLessThan
]);
createForm() {
this.contratoForm = this.formBuilder.group({
fechas: this.formBuilder.group({
fechaInicio: this.fechaInicio,
fechaFin: this.fechaFin
}, { validator: this.dateLessThan('fechaInicio', 'fechaFin') }),
});
}
这里我需要知道比较日期的控制名称:
dateLessThanTo(fieldControl: FormControl) {
//
//if (fechaInicio.value > FechaFin.value){
// return true;
//}
//else{
// return false;
// }
}
//Some stuff
答案 0 :(得分:3)
在自定义验证程序中,您获得formGroup
fechas
,因此您无需从TS代码传递任何参数:
createForm() {
this.contratoForm = this.formBuilder.group({
fechas: this.formBuilder.group({
fechaInicio: this.fechaInicio,
fechaFin: this.fechaFin
}, { validator: this.dateLessThanTo }),
});
}
并在您的自定义验证器中:
dateLessThanTo(group: FormGroup) {
if (group.controls.fechaInicio.value > group.controls.fechaFin.value){
return {notValid: true}
}
return null;
}
您需要在有效时返回null
,并设置错误,例如notValid
。
答案 1 :(得分:2)
从控件中获取父组,然后与当前控件进行比较:
dateLessThanTo(control: AbstractControl) {
let name = this.getName(control);
...
}
private getName(control: AbstractControl): string | null {
let group = <FormGroup>control.parent;
if (!group) {
return null;
}
let name: string;
Object.keys(group.controls).forEach(key => {
let childControl = group.get(key);
if (childControl !== control) {
return;
}
name = key;
});
return name;
}
答案 2 :(得分:0)
您必须这样做,您可以通过使用.get()方法提取表单中的单个FormControl
。
contratoForm.get('fechaInicio').value
dateLessThanTo(fieldControl: FormControl) {
let va= fieldControl.get('fechaInicio').value ;
let va1 = fieldControl.get('FechaFin').value ;
}
点击此处:https://angular.io/guide/reactive-forms#inspect-formcontrol-properties
答案 3 :(得分:0)
你可以这样做:
Object.getOwnPropertyNames(this.contratoForm['controls']['fechas']['controls']).map((key: string) => {
// Something like this. Not sure how your form looks like
答案 4 :(得分:0)
您可以在组件中添加一个像这样的自定义验证器
static customValidator(control: AbstractControl): { [key: string]: any } {
const controlName = (Object.keys(control.parent.controls).find(key => control.parent.controls[key] === control));
if (control.value === 0) {
return {key: {error: 'invalid'}};
}
return null; }
在controlName中,您将拥有控件的名称。