私は角度でリアクティブフォームを使用しています。開始日「開始日」と終了日「終了日」を比較する必要があります。どちらのコントロールも「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
カスタムバリデーターでは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
などのエラーを設定する必要があります。
コントロールから親グループを取得して、現在のコントロールと比較します。
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;
}
あなたはそれを行うことができます:
Object.getOwnPropertyNames(this.contratoForm['controls']['fechas']['controls']).map((key: string) => {
// Something like this. Not sure how your form looks like
コンポーネントに、このようなカスタムバリデーターを追加できます
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には、コントロールの名前が含まれます。
.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