這次帶給大家如何操作Angular實作模版驅動表單的自訂校驗功能,操作Angular實作模版驅動表單的自訂校驗功能的注意事項有哪些,以下就是實戰案例,一起來看一下。
HTML5原生的表單校驗屬性(必填,長度限制,取值間隔,正規表示式等等)可以滿足普通的校驗需求,但是有些場景必須用到自訂校驗,例如註冊時的密碼確認,有比對關係的時間/數值選擇, 需要到請求到服務端取值驗證等等···這裡以密碼確認為例進行說明。
指令開發
表單的驗證狀態是透過formContro l的errors 屬性回饋出來的,所以基本的思路肯定就是需要新增校驗規則,然後將驗證結果加入formControl實例的errors屬性。那麼問題來了,模版驅動表單的控制都是在HTML模版中完成的,無法直接接觸到 formControl實例。這時候就需要使用指令了,將檢驗規則包裝。 Angular提供了 驗證器供應商 NG_VALIDATORS ,用於處理表單自訂校驗。先創建指令。
import { Directive} from '@angular/core'; import { NG_VALIDATORS, Validator, AbstractControl} from '@angular/forms'; @Directive({ selector: '[appConfirmpsw]', providers: [{ provide : NG_VALIDATORS, useExisting : ConfirmpswDirective, multi: true }] }) export class ConfirmpswDirective implements Validator { constructor() { } validate(control: AbstractControl): {[key: string]: any} { //检验规则 } }
1、指定供應商 NG_VALIDATORS , 和別名類別 ConfirmpswDirective , 及 multi 為true(可用同一個token,註冊不同的 provide)。因為是在 NG_VALIDATORS 提供者中註冊的指令,所以才能被Angular的驗證流程識別,需要注意的是要用useExisting來註冊,這樣就不會建立一個新的實例。
2、用 Validator介面來約束 自訂的指令,這是Angular提供的驗證器的類別 。有validate屬性,會傳入表單的formControl,傳回 ValidationErrors 物件。
現在指令結構完成,開始進行校驗部分。首先需要傳入已輸入的密碼,所以增加@input,再指定校驗規則,判斷綁定表單的值和傳入的已輸入值是否相同
@Input('appConfirmpsw') confirmpsw: string;
為了避免使用指令時,還需要額外傳入confirmpsw屬性( <input type="password" appConfirmpsw [confirmpsw]="'xxx'" >
),所以我們將指令名稱appConfirmpsw作為confirmpsw的別名,這樣傳入值就會比較方便,簡化為 <input type="password" [appConfirmpsw] = "'xxx'">
。
這裡專門寫一個檢驗函數,用來比對值和回傳結果。記得在指令的validate中呼叫一下
export function comfirmPswValidator(_confirmpsw: string): ValidatorFn { //传入已输入的密码值 , 返回一个ValidatorFn return (control: AbstractControl): {[key: string]: any} => { //传入绑定表单的formControl if ( !control.value ) { //如果绑定未输入值,则返回 required错误 return { 'required' : true }; } //如果两次输入的值不相同,则返回confirmpsw的错误 return control.value !== _confirmpsw ? {'confirmpsw' : {value: true}} : null; }; }
完整指令如下:
import { Directive, Input } from '@angular/core'; import { NG_VALIDATORS, Validator, AbstractControl, ValidatorFn} from '@angular/forms'; @Directive({ selector: '[appConfirmpsw]', providers: [{ provide : NG_VALIDATORS, useExisting : ConfirmpswDirective, multi: true }] }) export class ConfirmpswDirective implements Validator { @Input('appConfirmpsw') confirmpsw: string; constructor() { } validate(control: AbstractControl): {[key: string]: any} { console.log(this.confirmpsw); return this.confirmpsw ? comfirmPswValidator(this.confirmpsw)(control) : null; } } export function comfirmPswValidator(_confirmpsw: string): ValidatorFn { return (control: AbstractControl): {[key: string]: any} => { if ( !control.value ) { return { 'required' : true }; } return control.value !== _confirmpsw ? {'confirmpsw' : {value: true}} : null; }; }
使用
# 測試指令的效果吧
<p class="input-group"> <label class="group-label" for="psw-new"> 新密码 :</label> <input class="group-input" [(ngModel)]="inputpsw.new" #new="ngModel" type="password" name="psw" id="psw-new" required> </p> <p class="input-group input-error" *ngIf="new.touched&&new.invalid"> <p class="group-error-content" *ngIf="new.errors?.required">确认密码为必填项!</p> </p> <p class="input-group"> <label class="group-label" for="psw-confirm">确认密码 :</label> <input class="group-input" [(ngModel)]="inputpsw.confirm" #confirm="ngModel" type="password" name="confirm" id="psw-confirm" [appConfirmpsw] = "new.value" required> </p> <p class="input-group input-error" *ngIf="confirm.touched&&confirm.invalid"> <p class="group-error-content" *ngIf="confirm.errors?.required">新密码为必填项!</p> <p class="group-error-content" *ngIf="confirm.errors?.confirmpsw">密码输入不一致!</p> </p>
傳入new表單的值,並透過errors.confirmpsw
屬性來控制提示語回饋。密碼輸入不一致,可以正確的校驗到
確認密碼為空時的提示也正確
相信看了本文案例你已經掌握了方法,更多精彩請關注php中文網其它相關文章!
推薦閱讀:
#以上是如何操作Angular實作模版驅動表單的自訂校驗功能的詳細內容。更多資訊請關注PHP中文網其他相關文章!