Angular之表单验证

1.基本思想

通过ngModel跟踪修改状态与有效值验证

2.必须遵守

O元素要有name属性
O通过ngModel进行双向绑定(要绑定到ts文件中的变量)
O如果要显示他的状态、需要给表单定义一个模板变量(#name)
O通过模板变量的className属性显示

3.可以通过样式进行表单验证

控件别访问过: ng-touched ng-untouched
控件的值变化: ng-dirty ng-pristine
控件的值有效: ng-valid ng-invalid

<div class="row" style="height:350px">
<div class="col-md-12"></div>
</div>
<div class="row">
<div class="col-md-5"></div>
<div class="col-md-7">
<!--接管表单-->
<form #loginForm="ngForm">
  <div class="form-group">
    <label for="inputEmail1">Email address</label>
    <input type="email" class="form-control" name="email" id="inputEmail1" [(ngModel)]="login_email" placeholder="Email" #myEmail required>
  </div>
  <div class="form-group">
    <div [hidden]="myEmail.valid || myEmail.pristine" class="alert alert-danger" >
      Name is required
    </div>
  </div>
  <div class="form-group">
    <label for="inputPassword1">Password</label>
    <input type="password" class="form-control" name="password" id="inputPassword1" [(ngModel)]="login_password" placeholder="Password">
  </div>
  <div class="checkbox">
    <label>
      <input type="checkbox" id="chk_rem"> Check me out
    </label>
  </div>
  <button type="submit" class="btn btn-default">Submit</button>
</form>
</div>
</div>

 .ng-valid[required]{
 border-left:5px solid greenyellow;
 }
.ng-invalid[required]{
 border-left:5px solid red;
 }
 /*排除表单*/
 /*.ng-invalid[required]:not(form){*/
/*border-left:5px solid blue;*/
/*}*/
image.png
image.png

4.步骤

五个:在app.module.ts中加入FormsModule
准备表单,让ngForm接管表单
表单上添加 ngModel双向绑定跟name属性 (模板变量与ngModel)
pattern正则验证
加警示div

5.代码
登录

<div class="container">
<div class="row" style="height: 200px"></div>
<div class="row">
<div class="col-md-5">
  <app-regist></app-regist>
</div>
<div class="col-md-7">
  <form #loginForm="ngForm">
    <div class="form-group">
      <label for="inputEmail">Email address</label>
      <input type="email" class="form-control" name="email" id="inputEmail"
             [(ngModel)]="login_email" placeholder="Email" #myEmail="ngModel"
             pattern="^([a-zA-Z0-9]+[_|\-|\.]?)*[a-zA-Z0-9]+@([a-zA-Z0-9]+[_|\-|\.]?)*[a-zA-Z0-9]+(\.[a-zA-Z]{2,3})+$" required>
    </div>

    <div class="form-group">
      <div [hidden]="myEmail.valid || myEmail.pristine"
           class="alert alert-danger">
        Email 格式不正确
      </div>
    </div>
    <div class="form-group">
      <label for="inputPassword">Password</label>
      <input type="password" class="form-control" name="password" id="inputPassword" [(ngModel)]="login_password" placeholder="Password">
    </div>

    <div class="checkbox">
      <label>
        <input type="checkbox"> Check me out
      </label>
    </div>
    <button type="button" class="btn btn-default">Submit</button>
  </form>

</div>
</div>
</div>

注册

   <div class="row">
  <div class="col-md-12">
  <form #myRegistForm="ngForm">
  <div class="form-group">
    <label for="inputRegistEmail">Email address</label>
    <input type="email" class="form-control" id="inputRegistEmail" name="email" [(ngModel)]="regist_email" placeholder="Email"
           pattern="^([a-zA-Z0-9]+[_|\-|\.]?)*[a-zA-Z0-9]+@([a-zA-Z0-9]+[_|\-|\.]?)*[a-zA-Z0-9]+(\.[a-zA-Z]{2,3})+$"
           #registEmail="ngModel" required>
  </div>

  <div class="form-group">
    <div [hidden]="registEmail.valid || registEmail.pristine"
         class="alert alert-danger">
      Email 格式不正确
    </div>
  </div>

  <div class="form-group">
    <label for="inputRegistPassword">Password</label>
    <input type="password" class="form-control" id="inputRegistPassword" name="password" [(ngModel)]="regist_password" placeholder="Password"
           pattern="^\d{6,}$" #registPassword="ngModel" required>
  </div>

  <div class="form-group">
    <div [hidden]="registPassword.valid || registPassword.pristine"
         class="alert alert-danger">
      Password 格式不正确
    </div>
  </div>
  <div class="form-group">
    <label for="inputPasswordComfirm">Password Confirm</label>
    <input type="password" class="form-control" id="inputPasswordComfirm" name="password_confirm" [(ngModel)]="regist_password_confirm"
           placeholder="Password" #registPasswordComfirm="ngModel" required>
  </div>

  <div class="form-group">
    <div [hidden]="registPasswordComfirm.pristine || regist_password==regist_password_confirm"
         class="alert alert-danger">
      两次密码不一致
    </div>
  </div>
  <div class="checkbox">
    <label>
      <input type="checkbox"> Check me out
    </label>
  </div>
  <button type="button" class="btn btn-default" (click)="regist(myRegistForm)" [disabled]="!(myRegistForm.form.valid &&regist_password==regist_password_confirm)">Submit</button>
</form>
</div>
</div>

app.module.ts

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


import { AppComponent } from './app.component';
import { PositionsAllComponent } from './position/positions-all/positions-all.component';
import { PositionsSelectorComponent } from './position/positions-selector/positions-selector.component';
import { PositionDetailComponent } from './position/position-detail/position-detail.component';
import { MyStyleDirective } from './directives/my-style.directive';
import { StringPipePipe } from './pipes/string-pipe.pipe';
import { SearchPipe } from './pipes/search.pipe';
import { LoginComponent } from './person-center/login/login.component';
import { RegistComponent } from './person-center/regist/regist.component';
import { IndexComponent } from './index/index.component';

@NgModule({
declarations: [
AppComponent,
PositionsAllComponent,
PositionsSelectorComponent,
PositionDetailComponent,
MyStyleDirective,
StringPipePipe,
SearchPipe,
LoginComponent,
RegistComponent,
IndexComponent
],
imports: [
BrowserModule,
FormsModule
],
providers: [],
bootstrap: [LoginComponent]
})
export class AppModule { }
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,992评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,212评论 3 388
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,535评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,197评论 1 287
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,310评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,383评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,409评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,191评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,621评论 1 306
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,910评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,084评论 1 342
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,763评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,403评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,083评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,318评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,946评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,967评论 2 351

推荐阅读更多精彩内容

  • AngularJS是什么?AngularJs(后面就简称ng了)是一个用于设计动态web应用的结构框架。首先,它是...
    200813阅读 1,592评论 0 3
  • core package 概要:Core是所有其他包的基础包.它提供了大部分功能包括metadata,templa...
    LOVE小狼阅读 2,564评论 0 3
  • 版本:Angular 5.0.0-alpha 表单是商业应用的支柱,我们用它来执行登录、求助、下单、预订机票、安排...
    soojade阅读 1,271评论 0 1
  • 这是我第一次见到老板!之前都是通过一根电话线来交流,而这次是真实地见到了老板的真脸! 我不太想记录第一次见面,打...
    蒲苇家阅读 258评论 1 0
  • 所以现实生活真是一地鸡毛。 并不是想传播什么负能量,只是无论如何生活里都逃脱不了这种心情低落到一句话都不想说的时候...
    浅肆xmx阅读 408评论 5 3