2

我有一个表单,一旦控件将类从ng-untouched ng-pristine ng-invalid更改为ng-pristine ng-invalid ng-touched,该表单就会得到验证,但是如果我有一个带有更多控件的表单,那么我想要用户知道他/她错过了按钮提交的哪个字段。我怎么能用angularJS2做到这一点。我使用 ReactiveFormsModule 来验证控件

以下是我的代码:组件

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

@Component({
    selector: 'page',
    templateUrl:'../app/template.html'
})
export class AppComponent {
    registrationForm: FormGroup;
    constructor(private fb: FormBuilder) {
        this.registrationForm = fb.group({
            username: ['', [Validators.required, Validators.minLength(4)]],
            emailId: ['', [Validators.required, this.emailValidator]],
            phonenumber: ['', [Validators.required, this.phoneValidation]]           
        })
    }

    emailValidator(control: FormControl): { [key: string]: any } {
        var emailRegexp = /^[a-z0-9!#$%&'*+\/=?^_`{|}~.-]+@[a-z0-9]([a-z0-9-]*[a-z0-9])?(\.[a-z0-9]([a-z0-9-]*[a-z0-9])?)*$/i;
        if (control.value && !emailRegexp.test(control.value)) {
            return { invalidEmail: true };
        }
    }
    phoneValidation(control: FormControl) {
        if (control['touched'] && control['_value'] != '') {
            if (!/^[1-9][0-9]{10}$/.test(control['_value'])) {
                return { 'invalidPhone': true }
            }
        }
    }
}

以下是我的代码:模块

import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { ReactiveFormsModule } from '@angular/forms';

import { AppComponent } from '../app/component';
@NgModule({
    imports: [BrowserModule, ReactiveFormsModule],
    declarations: [AppComponent],
    bootstrap: [AppComponent]
})
export class AppModule { }

以下是我的代码:模板

<form [formGroup]="registrationForm" (ngSubmit)="registrationForm.valid && submitRegistration(registrationForm.value)">
    <input type="text" formControlName="username"  placeholder="username" />
    <div class='form-text error' *ngIf="registrationForm.controls.username.touched">
        <div *ngIf="registrationForm.controls.username.hasError('required')">Username is required.</div>

    </div>
    <br />
    <input type="text" formControlName="emailId"  placeholder="emailId" />
    <div class='form-text error' *ngIf="registrationForm.controls.emailId.touched">
        <div *ngIf="registrationForm.controls.emailId.hasError('required')">email id is required.</div>
        <div *ngIf="registrationForm.controls.emailId.hasError('invalidEmail')">
            Email is not in correct format.
        </div>
    </div>
    <br />
    <input type="text" formControlName="phonenumber"  placeholder="phonenumber" />
    <div class='form-text error' *ngIf="registrationForm.controls.phonenumber.touched">
        <div *ngIf="registrationForm.controls.phonenumber.hasError('required')">phone number is required.</div>      
        <div *ngIf="registrationForm.controls.phonenumber.hasError('invalidPhone')">Invalid phone number.</div>   
    </div>
    <br />
    <input type="submit" value="Submit" />
</form>

我想将所有无效控件类更新为ng-untouched ng-pristine ng-invalid但不确定这是否是正确的方法

4

1 回答 1

2

Angular 表单不提供指定何时进行验证的方法。

只需true在提交表单时设置一个标志,并仅在使用标志或类似标志时显示验证true警告*ngIf="flag"

<form [formGroup]="registrationForm" (ngSubmit)="submitRegistration(registrationForm.value)">

<div *ngIf="showValidation> validation errors here </div>

showValidation:boolean = false;

submitRegistration() {
  if(this.registrationForm.status == 'VALID') {
    this.processForm();
  } else {
    this.showValidation = true;
  }
}
于 2017-02-06T08:26:49.930 回答