0

ほぼ同じ検証が必要な複数の入力フィールドがあります。エラーを表示するための HTML コードの繰り返しを減らす方法はありますか。

私のコードは以下の通りです


              <div colspan="2">
                <input type="text" name="appName" [disabled]="recordCreated" [(ngModel)]="appName" appForbiddenName="Application" minlength="4"
                  required #name="ngModel" [ngClass]="{'has-danger': name.invalid && (name.dirty || name.touched) }" />
                <div *ngIf="name.invalid && (name.dirty || name.touched)" class="alert alert-danger">
                  <div *ngIf="name.errors.required">
                    Name is required.
                  </div>
                  <div *ngIf="name.errors.minlength">
                    Name must be at least 4 characters long.
                  </div>
                  <div *ngIf="name.errors.forbiddenName">
                    Name cannot be Application.
                  </div>
                </div>
              </div>

            <div colspan="2">
                <input type="text" name="appName" [disabled]="recordCreated" [(ngModel)]="desc" appForbiddenName="Application" minlength="4"
                  required #desc="ngModel" [ngClass]="{'has-danger': desc.invalid && (desc.dirty || desc.touched) }" />
                <div *ngIf="desc.invalid && (desc.dirty || desc.touched)" class="alert alert-danger">
                  <div *ngIf="desc.errors.required">
                    Desc is required.
                  </div>
                  <div *ngIf="desc.errors.minlength">
                    Desc must be at least 4 characters long.
                  </div>
                  <div *ngIf="desc.errors.forbiddenName">
                    Desc cannot be Application.
                  </div>
                </div>
              </div>

import { Directive, Input } from '@angular/core';
import { NG_VALIDATORS, Validator, ValidatorFn } from '@angular/forms';
import { AbstractControl } from '@angular/forms/src/model';

export function forbiddenNameValidator(nameRe: RegExp): ValidatorFn {
  return (control: AbstractControl) : {[key: string] : any} | null => {
    const forbidden = nameRe.test(control.value);
    return forbidden ? {'forbiddenName': {value: control.value}} : null;
  };
}

@Directive({
  selector: '[appForbiddenName]',
  providers: [{ provide: NG_VALIDATORS, useExisting: ForbiddenValidatorDirective, multi: true }]
})
export class ForbiddenValidatorDirective implements Validator {

  @Input('appForbiddenName') forbiddenName: string;

  validate(control: AbstractControl): { [key: string]: any } | null {
    return this.forbiddenName ? forbiddenNameValidator(new RegExp
      (this.forbiddenName, 'i'))(control) : null;
  }


}


入力フィールドと必須の div タグを除いて、他のすべてのバリデータ HTML コードは入力フィールドごとに繰り返されます。エラーメッセージのタンプレートを返すことができる方法はありますか。null の代わりに

4

1 に答える 1