使用自动完成功能和“ updateOn:'blur'“

时间:2018-06-23 08:21:46

标签: angular typescript angular-material angular6 angular-forms

我的Angular应用程序使用在服务器端执行的复杂验证。因此,我配置为仅在 blur 事件上触发更新和验证:

this.form = new FormGroup(
    { ... },
    {
        updateOn: 'blur'
    }
);

除了使用自动补全的字段外,它的效果都很好。如果自动完成功能已打开,并且用户用鼠标单击了一个条目,则会发生一系列不幸的事件:

  • 触发了 blur 事件
  • 验证使用不完整的旧值运行并添加错误
  • 将所选的自动完成值放入字段
  • 自动补全弹出窗口关闭,字段再次获得焦点

结果如下所示(简化示例)。有效值位于文本字段中,但由于验证是针对旧值运行的,因此被标记为错误。

enter image description here

从技术上讲,运行验证是正确的,因为单击自动完成弹出窗口会导致 blur 事件。但是,从UI角度来看,这是胡说八道。完成该字段并转到下一个字段时,应该进行验证。

那么如何防止 blur 事件和早期验证?

我已经创建了一个简单的StackBlitz example。它使用类似的设置,但在客户端运行验证(并检查文本是否以“ ABC”开头)。要重现该问题,请输入“ 34”,然后用鼠标从自动完成弹出窗口中选择“ ABC34”。

1 个答案:

答案 0 :(得分:1)

要触发字符更改,我们应该同时触发输入事件和自动完成更改事件,因此您可以尝试以下操作:

在组件中:

import { Component, OnInit , ViewChild , ElementRef} from '@angular/core';
import { VERSION } from '@angular/material';
import { FormGroup, FormControl } from '@angular/forms';
import { Observable, Subject } from 'rxjs';
import { startWith, map } from 'rxjs/operators';

@Component({
  selector: 'material-app',
  templateUrl: 'app.component.html'
})
export class AppComponent implements OnInit {


  @ViewChild('textInput') textInput: ElementRef;  




  version = VERSION;
  form: FormGroup;
  abcText: string = 'ABC1';
  anyText: string = '';
  public readonly abcChanges: Subject<string> = new Subject<string>();
  public abcSuggestions: Observable<string[]>;

  ngOnInit() {
    this.form = new FormGroup({
      abcText: new FormControl(this.abcText),
      anyText: new FormControl(this.anyText)
    }, {
        updateOn: 'blur'
      });

    this.form.valueChanges.subscribe(val => {
      this.validateData(val)}

    );

    this.abcSuggestions = this.abcChanges.pipe(
      startWith(''),
      map(val => this.generateSuggestions(val))
    );
  }

  private validateData(val: any) {
    console.log(val)
    // Would be more complex and happen on the server side
    const text: string = val['abcText'];
    const formControl = this.form.get('abcText');
    if (text.startsWith('ABC')) {
      formControl.setErrors(null);
    } else {
      formControl.setErrors({ abc: 'Must start with ABC' });
    }
  }

  private generateSuggestions(val: string) {
    let suggestions = [];
    if (!val.startsWith('ABC')) {
      suggestions.push('ABC' + val);
    }
    suggestions.push('ABC1');
    suggestions.push('ABC2');
    suggestions.push('ABC3');
    return suggestions;
  }

    validateOnCharacterChange(value) {
    console.log(value)
    const formControl = this.form.get('abcText');

    if (value.startsWith('ABC')) {
      formControl.setErrors(null);
    } else {
      formControl.setErrors({ abc: 'Must start with ABC' });
    }
    // this.textInput.nativeElement.blur();
  }
}

在html中:

<mat-toolbar color="primary">
    Angular Material 2 App
</mat-toolbar>
<div class="basic-container">
    <form [formGroup]="form" novalidate>
        <div>
            <mat-form-field>
                <input matInput [matAutocomplete]="auto" formControlName="abcText" (input)="abcChanges.next($event.target.value)" placeholder="Text starting with ABC" #textInput required (input)="validateOnCharacterChange($event.target.value)">
                <mat-error>Must start with 'ABC'</mat-error>
            </mat-form-field>
            <mat-autocomplete #auto="matAutocomplete" (optionSelected)="validateOnCharacterChange($event.option.value)">
            <mat-option *ngFor="let val of abcSuggestions | async" [value]="val">{{ val }}</mat-option>
            </mat-autocomplete>
        </div>
    <div>&nbsp;</div>
    <div>
            <mat-form-field>
                <input matInput formControlName="anyText" placeholder="Any text">
                <mat-error></mat-error>
            </mat-form-field>
    </div>
    </form>
    <span class="version-info">Current build: {{version.full}}</span>
</div>

检查工作的stackblitz

也可以通过使用this.textInput.nativeElement.blur();在每个所需的事件中进行模糊处理,而不仅仅是单击输入之外。 希望这会有所帮助。