1. ホーム
  2. angular

[解決済み] Reactive Forms - フィールドをタッチしたものとしてマークする

2022-10-09 09:56:34

質問

フォームのすべてのフィールドをタッチしたものとしてマークする方法を見つけるのに苦労しています。 主な問題は、私がフィールドに触れていない場合、フォームを送信しようとすると - バリデーションエラーが表示されないことです。私のコントローラには、そのコードの部分のプレースホルダーがあります。

私のアイデアはシンプルです。

  1. ユーザーが送信ボタンをクリックする
  2. すべてのフィールドがタッチされたものとしてマークされます
  3. エラーフォーマッターを再実行し、バリデーションエラーを表示します。

もし、新しいメソッドを実装せずに、送信時にエラーを表示する他のアイデアをお持ちの方がいらっしゃいましたら、ぜひ教えてください。ありがとうございます。


私の簡略化したフォームです。

<form class="form-horizontal" [formGroup]="form" (ngSubmit)="onSubmit(form.value)">
    <input type="text" id="title" class="form-control" formControlName="title">
    <span class="help-block" *ngIf="formErrors.title">{{ formErrors.title }}</span>
    <button>Submit</button>
</form>

そして、私のコントローラ。

import {Component, OnInit} from '@angular/core';
import {FormGroup, FormBuilder, Validators} from '@angular/forms';

@Component({
  selector   : 'pastebin-root',
  templateUrl: './app.component.html',
  styleUrls  : ['./app.component.css']
})
export class AppComponent implements OnInit {
  form: FormGroup;
  formErrors = {
    'title': ''
  };
  validationMessages = {
    'title': {
      'required': 'Title is required.'
    }
  };

  constructor(private fb: FormBuilder) {
  }

  ngOnInit(): void {
    this.buildForm();
  }

  onSubmit(form: any): void {
    // somehow touch all elements so onValueChanged will generate correct error messages

    this.onValueChanged();
    if (this.form.valid) {
      console.log(form);
    }
  }

  buildForm(): void {
    this.form = this.fb.group({
      'title': ['', Validators.required]
    });
    this.form.valueChanges
      .subscribe(data => this.onValueChanged(data));
  }

  onValueChanged(data?: any) {
    if (!this.form) {
      return;
    }

    const form = this.form;

    for (const field in this.formErrors) {
      if (!this.formErrors.hasOwnProperty(field)) {
        continue;
      }

      // clear previous error message (if any)
      this.formErrors[field] = '';
      const control = form.get(field);
      if (control && control.touched && !control.valid) {
        const messages = this.validationMessages[field];
        for (const key in control.errors) {
          if (!control.errors.hasOwnProperty(key)) {
            continue;
          }
          this.formErrors[field] += messages[key] + ' ';
        }
      }
    }
  }
}

どのように解決するのですか?

次の関数は、フォームグループ内のコントロールに再帰的にアクセスし、そっとタッチします。controlsフィールドはオブジェクトなので、このコードではフォームグループのコントロールフィールドに対してObject.values()を呼び出しています。

  /**
   * Marks all controls in a form group as touched
   * @param formGroup - The form group to touch
   */
  private markFormGroupTouched(formGroup: FormGroup) {
    (<any>Object).values(formGroup.controls).forEach(control => {
      control.markAsTouched();

      if (control.controls) {
        this.markFormGroupTouched(control);
      }
    });
  }