开发者问题收集

自定义密码匹配验证器在 angular 5 中不起作用

2019-01-02
2029

我正在实现自定义验证器以匹配组件中的密码。

这是我的 component.ts 表单声明

this.addUserForm = new FormGroup({
  firstname: new FormControl('', [Validators.required]),
  lastname: new FormControl('', [Validators.required]),
  city: new FormControl(),
  address: new FormControl(),
  email: new FormControl('', [Validators.required, Validators.email]),
  password: new FormControl('', [Validators.required, Validators.minLength(6)]),
  confirm_password: new FormControl('', [Validators.required, ConfirmPasswordValidator.MatchPassword]),
  role: new FormControl('', [Validators.required]),
  phone: new FormControl(),
  companyCode: new FormControl(this.local_storage.getCurrentUser().companyCode, [Validators.required])
});

这是我的 custom.validator.ts

import { AbstractControl } from '@angular/forms';

export class ConfirmPasswordValidator {
static MatchPassword(control: AbstractControl) {
    let password = control.get('password').value;
    let confirmPassword = control.get('confirm_password').value;

    if (password != confirmPassword) {
        console.log('false')
        control.get('confirmPassword').setErrors({ ConfirmPassword: true });
    } else {
        return null
    }
  }
 }

这是我的 component.html 输入部分

 <label class="col-form-label">Password</label>
        <div class="form-group row">
          <div class="col-sm-10">
            <input type="password" class="form-control" formControlName="password">
            <div class="alert alert-danger" *ngIf="addUserForm.get('password').touched && addUserForm.get('password').invalid && addUserForm.get('password').errors.required">
              Password is required
            </div>
            <div class="alert alert-danger" *ngIf="addUserForm.get('password').touched && addUserForm.get('password').invalid && addUserForm.get('password').errors.minlength && !addUserForm.get('password').errors.required">
              Password length must be greater than 6
            </div>
          </div>
        </div>
       <div class="alert alert-danger" *ngIf="addUserForm.get('confirm_password').touched && addUserForm.get('confirm_password').invalid && addUserForm.get('confirm_password').errors.ConfirmPassword">
              Password deesn't match
          </div>

但它给出了这个错误 属性“value”为 null TypeError:无法在 ConfirmPasswordValidator.MatchPassword (user.validator.ts:5) 处读取属性“value”为 null 项目结构和目录非常复杂且庞大,这就是为什么无法共享所有组件和 html 代码的原因。 我的代码有什么问题?

2个回答

表单组验证器

更新 MatchPassword 以在表单组级别工作,因此您无需向 confirmPassword 控件添加自定义验证器

static MatchPassword(control: AbstractControl) {
    let password = control.get('password').value;
    let confirmPassword = control.get('confirm_password').value;

    if (password != confirmPassword) {
      return { ConfirmPassword: true };
    } else {
        return null
    }
  }

并为 formGroup 验证器选项添加此验证器

{ validators: ConfirmPasswordValidator.MatchPassword }

stackblitz 演示 🚀🚀

表单控件验证器

如果您想将验证添加到控件,那么控件参数将是确认密码控件,并且您需要使用父级访问表单组并获取密码控件的值

this.form = fb.group({
  password: [null, [Validators.required]],
  confirm_password: [null, [Validators.required, MatchPassword]]
})

MatchPassword验证器

function MatchPassword(control: AbstractControl) {
  let parent = control.parent
  if (parent) {
    let password = parent.get('password').value;
    let confirmPassword = control.value;

    if (password != confirmPassword) {
      return { ConfirmPassword: true };
    } else {
      return null
    }
  } else {
    return null;
  }

stackblitz 演示 🚀🚀

Muhammed Albarmavi
2019-01-02

您的代码存在几个问题。

首先:您从传递给验证器的控件中获取了一个名为“password”的子控件和另一个名为“confirmPassword”的子表单控件。因此,验证器应该验证的是包含这两个表单控件的 FormGroup 。但您没有在表单组上设置此验证器。您是在表单控件 confirmPassword 上设置的。您需要在封闭的表单组上设置此验证器。

其次:验证器不应该修改它正在验证的控件。它的唯一职责是 返回 错误(如果没有错误,则返回 null)。Angular 将根据您返回的内容设置控件的有效性。所以它的代码应该是

static MatchPassword(control: AbstractControl) {
  const password = control.get('password').value;
  const confirmPassword = control.get('confirm_password').value;

  if (password != confirmPassword) {
    return { ConfirmPassword: true };
  } else {
    return null;
  }
}

或者,写得更简洁一些:

static MatchPassword(control: AbstractControl) {
  return control.get('password').value != control.get('confirm_password').value ? { ConfirmPassword: true } : null;
}
JB Nizet
2019-01-02