1. 创建指令

ng g directive directives/mobileValidator

  

2. html

<form #myForm="ngForm" (ngSubmit)="onSubmit2(myForm.value, myForm.valid)">
  <div>
    <h3>登录</h3>
  </div>
  <div>用户名:<input ngModel required name="username" type="text" (input)="onMobileInput(myForm)"></div>
    <div [hidden]="mobileValid || moblieUntouched">
      <div [hidden]="!myForm.form.hasError('required','username')">
        用户名是必填项
      </div>
    </div>

  <div>电话: <input ngModel mobile name="mobile" type="text"></div>
  <button type="submit">登录</button>
</form>

  

3. 控制器

  mobileValid: boolean = true;
  moblieUntouched: boolean = true;

  onMobileInput(form: NgForm) {
    if (form) {
      this.mobileValid = form.form.get('mobile').valid;
      this.moblieUntouched = form.form.get('mobile').untouched;
    }
  }

  

相关文章:

  • 2022-12-23
  • 2021-05-24
  • 2021-11-26
  • 2021-04-03
  • 2021-06-13
  • 2021-09-21
  • 2022-12-23
猜你喜欢
  • 2021-08-14
  • 2021-12-26
  • 2021-05-18
  • 2021-10-02
  • 2021-06-20
  • 2022-12-23
相关资源
相似解决方案