百度360必应搜狗淘宝本站头条
当前位置:网站首页 > 编程网 > 正文

AngularJs 表单字段合法性校验 angular 变更检测

yuyutoo 2024-11-14 19:54 3 浏览 0 评论

AngularJs 表单字段合法性校验

基于AngularJS入门与进阶(江荣波 著)这本书的笔记

AngularJS 1.x的demo

AngularJS1.x和Angular2,4,5是不一样的两个东西,构建方式,语法,都很多不同

参考文章:https://www.oschina.net/translate/angularjs-form-validation


在AngularJs要使用自带的表单验证,只需要在页面定义一个<form>标签,然后定义表单,再使用ng-model进行数据的双向绑定就可以了。CSS样式与状态对应的属性关系


AngularJs表单常用校验相关属性和指令


首先假设有个注册页面的场景,有个用户注册页面

  • 用户名必填
  • 密码只能是数字或者英文字母
  • 密码长度8到16位
  • 邮箱必须格式合法

ng-show和ng-messages指令表单验证如果不通过,我们通常需要给用户提示出对应的错误信息,ng-show指令可以在ng-show="false"的时候控制显示和隐藏,true为显示,false为隐藏,上面表格也说了可以通过$invalid获取到当前文本框是否合法的boolean如果是单条错误提示可以用ng-show实现,有时候我们一个文本框有过多个验证,需要提示,可以用ng-messages指令,当检测到不合法的时候,会顺序显示第一条不合法的提示信息,如果需要使用ng-message指令,必须在module中引入ngMessages,并且页面引入angular-messages.js

一个简单控制器 app.js

var formApp = angular.module("formApp",["ngMessages"]);
formApp.controller("formController",function ($scope,$log) {
    $scope.submitValid = function (isValid) {
        if(!isValid) {
            $('#showMsg').text("验证不通过,请检查!");
            $('#showMsgDiv').modal();
        }
    }
});

demo页面 index.html

<!DOCTYPE html>
<html lang="en" ng-app="formApp">
<head>
    <meta charset="UTF-8">
    <title>表单验证</title>
    <link rel="stylesheet" href="/bootstrap-3.3.7/dist/css/bootstrap.css">
    <link rel="stylesheet" href="/bootstrap-3.3.7/dist/css/bootstrap-theme.min.css">
    <script  src="/lib/angular/angular.js"></script>
    <script  src="/lib/angular-messages/angular-messages.js"></script>
    <script  src="../../js/jquery-1.9.1/jquery.js"></script>
    <script src="/bootstrap-3.3.7/dist/js/bootstrap.js"></script>
    <script src="app.js"></script>
    <style>
        body
        {   padding-top:30px;
            padding-left: 600px;
        }
    </style>
</head>
<body ng-controller="formController">
<di class = 'page-header'><h3>AngularJs 表单验证</h3></di>
<!-- novalidate 禁用自带的验证规则-->
<form name ='userForm' novalidate ng-submit="submitValid(userForm.$valid)" style="width: 300px;">
    <div class="form-group"  style="height: 70px;">
        <label>用户名</label>
        <input type="text" class="form-control" name="userName" ng-model="userName" required>
        <!--必填单纯判断会在页面加载的时候就显示错误提示,可以先判断表单是否未使用$pristine 可以避免页面加载进来就提示错误-->
        <span ng-show="userForm.userName.$invalid && !userForm.userName.$pristine" class="help-block">必填项</span>
    </div>

    <div class="form-group" style="height: 70px;">
        <label>密码</label>
        <input type="text" class="form-control" name="password" ng-model="password"
                ng-pattern="/^[A-Za-z0-9]+$/" ng-minlength="8" ng-maxlength="16">
        <!--这里有2个验证规则,第一个是只能是数字或者字母,第二个是长度要在8-16位 使用ng-messages优先提示格式,然后提示长度-->
        <div ng-messages="userForm.password.$error" >
            <span ng-message="pattern">密码只能是数字或英文字母</span>
            <span ng-message="minlength">密码长度最短8位</span>
            <span ng-message="maxlength">密码长度最长16位</span>
        </div>
    </div>

    <div class="form-group" style="height: 70px;">
        <label>邮箱</label>
        <input type="email" class="form-control" name="email" ng-model="email" >
        <span ng-show="userForm.email.$invalid  && !userForm.email.$pristine" class="help-block">邮箱格式错误</span>
    </div>

    <button type="submit" class="btn btn-primary">提交</button>
</form>
<!-- 模态弹出窗 -->
<div class="modal fade" id="showMsgDiv">
    <div class="modal-dialog">
        <div class="modal-content">
            <div class="modal-header">
                <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
                <h4 class="modal-title">提示信息</h4>
            </div>
            <div class="modal-body">
                <p id="showMsg"></p>
            </div>
            <div class="modal-footer">
                <button type="button" class="btn btn-default" data-dismiss="modal">关闭</button>
                <!--<button type="button" class="btn btn-primary">保存</button>-->
            </div>
        </div><!-- /.modal-content -->
    </div><!-- /.modal-dialog -->
</div><!-- /.modal -->
</body>
</html>


失去焦点时验证

从页面验证可以看出所有验证都是生效的了的,也按照我们的预期在验证,基于AngularJs的数据双向绑定,我们发现我们所有的验证都是及时生效的,这在大多数情况下是期望的,不过在注册这种情况下,我们不期望在用户输入的过程中就提示,期望是文本框失去焦点或者提交的时候验证。

ng-model-options 和 ng-blur与ng-focus如果要达到获取焦点或失去焦点的时候验证的方式比较多,这里举例两种,ng-model-options和 ng-blur与ng-focus。

首先我们做了个变量change,在通过ng-blur与ng-focus在获取或失去焦点的时候改变这个值,让ng-show指令中的表达式在失去焦点的时候才成立往下验证对像中的blur,给对象添加一个判断当前输入框是否失去焦点的属性 userForm.email.$error.blur,再用input的事件ng-focus,ng-blur来动态改变这个值。

    <div class="form-group" style="height: 70px;">
        <label>邮箱</label>
        <input type="email" class="form-control" name="email" ng-model="email"
                ng-blur="change=true" ng-focus="change=false">
        <span ng-show="change && userForm.email.$invalid  && !userForm.email.$pristine" class="help-block">邮箱格式错误</span>
    </div>

还可以用ng-model-option,在默认情况下,任何内容的改变将触发表单验证和model的更新。ngModelOptions指令绑定到一个事件集合中来重写触发的时间,例如:ng-model-options="{ updateOn: 'blur' }" 将会在控件失去焦点后执行表单验证和更新Model。你可以使用空格来分割多个事件的触发验证和更新的时间。例如:ng-model-options="{ updateOn: 'mousedown blur' }"。

    <div class="form-group" style="height: 70px;">
        <label>密码</label>
        <input type="text" class="form-control" name="password" ng-model="password"
                ng-pattern="/^[A-Za-z0-9]+$/" ng-minlength="8" ng-maxlength="16"
                ng-model-options="{ updateOn: 'blur' }">
        <!--这里有2个验证规则,第一个是只能是数字或者字母,第二个是长度要在8-16位 使用ng-messages优先提示格式,然后提示长度-->
        <div ng-messages="userForm.password.$error" >
            <span ng-message="pattern" class="help-block">密码只能是数字或英文字母</span>
            <span ng-message="minlength" class="help-block">密码长度最短8位</span>
            <span ng-message="maxlength" class="help-block">密码长度最长16位</span>
        </div>
    </div>

ng-class动态改变文本框样式在验证的时候我们还期望错误的文本框改变颜色,ng-class 允许我们基于一个表达式添加类。因为我们使用了 Bootstrap, 我们将就使用它们提供的类(has-error)

    <div class="form-group"  style="height: 70px;" ng-class="{'has-error' : userForm.userName.$invalid && !userForm.userName.$pristine}">
        <label>用户名</label>
        <input type="text" class="form-control" name="userName" ng-model="userName" required
                ng-model-options="{ updateOn: 'blur' }">
        <!--必填单纯判断会在页面加载的时候就显示错误提示,可以先判断表单是否未使用$pristine 可以避免页面加载进来就提示错误-->
        <span ng-show="userForm.userName.$invalid && !userForm.userName.$pristine" class="help-block">必填项</span>
    </div>

    <div class="form-group" style="height: 70px;" ng-class="{'has-error' : userForm.password.$invalid && !userForm.password.$pristine}">
        <label>密码</label>
        <input type="text" class="form-control" name="password" ng-model="password"
                ng-pattern="/^[A-Za-z0-9]+$/" ng-minlength="8" ng-maxlength="16"
                ng-model-options="{ updateOn: 'blur' }">
        <!--这里有2个验证规则,第一个是只能是数字或者字母,第二个是长度要在8-16位 使用ng-messages优先提示格式,然后提示长度-->
        <div ng-messages="userForm.password.$error" >
            <span ng-message="pattern" class="help-block">密码只能是数字或英文字母</span>
            <span ng-message="minlength" class="help-block">密码长度最短8位</span>
            <span ng-message="maxlength" class="help-block">密码长度最长16位</span>
        </div>
    </div>

下面是完整的html,app.js没做改变

<!DOCTYPE html>
<html lang="en" ng-app="formApp">
<head>
    <meta charset="UTF-8">
    <title>表单验证</title>
    <link rel="stylesheet" href="/bootstrap-3.3.7/dist/css/bootstrap.css">
    <link rel="stylesheet" href="/bootstrap-3.3.7/dist/css/bootstrap-theme.min.css">
    <script  src="/lib/angular/angular.js"></script>
    <script  src="/lib/angular-messages/angular-messages.js"></script>
    <script  src="../../js/jquery-1.9.1/jquery.js"></script>
    <script src="/bootstrap-3.3.7/dist/js/bootstrap.js"></script>
    <script src="app.js"></script>
    <style>
        body
        {   padding-top:30px;
            padding-left: 600px;
        }
    </style>
</head>
<body ng-controller="formController">
<di class = 'page-header'><h3>AngularJs 表单验证</h3></di>
<!-- novalidate 禁用自带的验证规则-->
<form name ='userForm' novalidate ng-submit="submitValid(userForm.$valid)" style="width: 300px;">
    <div class="form-group"  style="height: 70px;" ng-class="{'has-error' : userForm.userName.$invalid && !userForm.userName.$pristine}">
        <label>用户名</label>
        <input type="text" class="form-control" name="userName" ng-model="userName" required
                ng-model-options="{ updateOn: 'blur' }">
        <!--必填单纯判断会在页面加载的时候就显示错误提示,可以先判断表单是否未使用$pristine 可以避免页面加载进来就提示错误-->
        <span ng-show="userForm.userName.$invalid && !userForm.userName.$pristine" class="help-block">必填项</span>
    </div>

    <div class="form-group" style="height: 70px;" ng-class="{'has-error' : userForm.password.$invalid && !userForm.password.$pristine}">
        <label>密码</label>
        <input type="text" class="form-control" name="password" ng-model="password"
                ng-pattern="/^[A-Za-z0-9]+$/" ng-minlength="8" ng-maxlength="16"
                ng-model-options="{ updateOn: 'blur' }">
        <!--这里有2个验证规则,第一个是只能是数字或者字母,第二个是长度要在8-16位 使用ng-messages优先提示格式,然后提示长度-->
        <div ng-messages="userForm.password.$error" >
            <span ng-message="pattern" class="help-block">密码只能是数字或英文字母</span>
            <span ng-message="minlength" class="help-block">密码长度最短8位</span>
            <span ng-message="maxlength" class="help-block">密码长度最长16位</span>
        </div>
    </div>

    <div class="form-group" style="height: 70px;" ng-class="{'has-error' : change && userForm.email.$invalid  && !userForm.email.$pristine}">
        <label>邮箱</label>
        <input type="email" class="form-control" name="email" ng-model="email"
                ng-blur="change=true" ng-focus="change=false">
        <span ng-show="change && userForm.email.$invalid  && !userForm.email.$pristine" class="help-block">邮箱格式错误</span>
    </div>
    <button type="submit" class="btn btn-primary">提交</button>
</form>
<!-- 模态弹出窗 -->
<div class="modal fade" id="showMsgDiv">
    <div class="modal-dialog">
        <div class="modal-content">
            <div class="modal-header">
                <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
                <h4 class="modal-title">提示信息</h4>
            </div>
            <div class="modal-body">
                <p id="showMsg"></p>
            </div>
            <div class="modal-footer">
                <button type="button" class="btn btn-default" data-dismiss="modal">关闭</button>
                <!--<button type="button" class="btn btn-primary">保存</button>-->
            </div>
        </div><!-- /.modal-content -->
    </div><!-- /.modal-dialog -->
</div><!-- /.modal -->
</body>
</html>


提交时验证

提交时验证的原理也是通过angularJS的双向数据绑定原理,这里因为做了判断文本框是否使用,修改提交的验证方法,在提交的时候把所有文本框设置为已经使用,然后还做了个全局变量,是否提交,控制ng-show和ng-messages 判断表达式

app.js

var formApp = angular.module("formApp",["ngMessages"]);
formApp.controller("formController",function ($scope,$log) {
    // 失去焦点验证变量
    $scope.changeFlagBon = false;
    // 提交变量
    $scope.isSubmit = false;
    
    // form 提交时的方法
    $scope.submitValid = function (isValid,userForm) {
        if(!isValid) {
            // 提交的时候所有的输入框都设置为已经使用
            userForm.userName.$pristine =false;
            userForm.password.$pristine =false;
            userForm.email.$pristine =false;
            $scope.changeFlagBon = true;
            
            // 处理更详细的验证

            // 提交变量设置为已经提交
            $scope.isSubmit = true;

            $('#showMsg').text("验证不通过,请检查!");
            $('#showMsgDiv').modal();
        }else {
            // 处理提交逻辑
        }
    }
    
    // ng-blur  ng-focus  获取焦点,失去焦点方法
    $scope.changeFlag = function (flag) {
        $scope.changeFlagBon = flag;
    }
});


index.html

<!DOCTYPE html>
<html lang="en" ng-app="formApp">
<head>
    <meta charset="UTF-8">
    <title>表单验证</title>
    <link rel="stylesheet" href="/bootstrap-3.3.7/dist/css/bootstrap.css">
    <link rel="stylesheet" href="/bootstrap-3.3.7/dist/css/bootstrap-theme.min.css">
    <script  src="/lib/angular/angular.js"></script>
    <script  src="/lib/angular-messages/angular-messages.js"></script>
    <script  src="../../js/jquery-1.9.1/jquery.js"></script>
    <script src="/bootstrap-3.3.7/dist/js/bootstrap.js"></script>
    <script src="app.js"></script>
    <style>
        body
        {   padding-top:30px;
            padding-left: 600px;
        }
    </style>
</head>
<body ng-controller="formController">
<di class = 'page-header'><h3>AngularJs 表单验证</h3></di>
<!-- novalidate 禁用自带的验证规则-->
<form name ='userForm' novalidate ng-submit="submitValid(userForm.$valid,userForm)" style="width: 300px;">
    <div class="form-group"  style="height: 70px;" ng-class="{'has-error' : userForm.userName.$invalid && !userForm.userName.$pristine}">
        <label>用户名</label>
        <input type="text" class="form-control" name="userName" ng-model="userName" required
                ng-model-options="{ updateOn: 'blur' }">
        <!--必填单纯判断会在页面加载的时候就显示错误提示,可以先判断表单是否未使用$pristine 可以避免页面加载进来就提示错误-->
        <span ng-show="userForm.userName.$invalid && !userForm.userName.$pristine" class="help-block">必填项</span>
    </div>

    <div class="form-group" style="height: 70px;" ng-class="{'has-error' :isSubmit && userForm.password.$invalid && !userForm.password.$pristine}">
        <label>密码</label>
        <input type="text" class="form-control" name="password" ng-model="password" required
                ng-pattern="/^[A-Za-z0-9]+$/" ng-minlength="8" ng-maxlength="16"
                ng-model-options="{ updateOn: 'blur' }">
        <!--这里有2个验证规则,第一个是只能是数字或者字母,第二个是长度要在8-16位 使用ng-messages优先提示格式,然后提示长度-->
        <div ng-messages="userForm.password.$error" ng-if="isSubmit">
            <span ng-message="pattern" class="help-block">密码只能是数字或英文字母</span>
            <span ng-message="minlength" class="help-block">密码长度最短8位</span>
            <span ng-message="maxlength" class="help-block">密码长度最长16位</span>
            <span ng-message="required" class="help-block">密码必填</span>
        </div>
    </div>
    <div class="form-group" style="height: 70px;" ng-class="{'has-error' : changeFlagBon && userForm.email.$invalid  && !userForm.email.$pristine}">
        <label>邮箱</label>
        <input type="email" class="form-control" name="email" ng-model="email" required
                ng-blur="changeFlag(true)" ng-focus="changeFlag(false)">
        <span ng-show="changeFlagBon && userForm.email.$invalid  && !userForm.email.$pristine" class="help-block">邮箱格式错误</span>
    </div>
    <button type="submit" class="btn btn-primary">提交</button>
</form>
<!-- 模态弹出窗 -->
<div class="modal fade" id="showMsgDiv">
    <div class="modal-dialog">
        <div class="modal-content">
            <div class="modal-header">
                <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
                <h4 class="modal-title">提示信息</h4>
            </div>
            <div class="modal-body">
                <p id="showMsg"></p>
            </div>
            <div class="modal-footer">
                <button type="button" class="btn btn-default" data-dismiss="modal">关闭</button>
                <!--<button type="button" class="btn btn-primary">保存</button>-->
            </div>
        </div><!-- /.modal-content -->
    </div><!-- /.modal-dialog -->
</div><!-- /.modal -->
</body>
</html>

相关推荐

自卑的人容易患抑郁症吗?(自卑会导致抑郁吗)

Filephoto[Photo/IC]Lowself-esteemmakesusfeelbadaboutourselves.Butdidyouknowthatovert...

中考典型同(近)义词组(同义词考题)

中考典型同(近)义词组...

WPF 消息传递简明教程(wpf messagebox.show)

...

BroadcastReceiver的原理和使用(broadcast-suppression)

一、使用中注意的几点1.动态注册、静态注册的优先级在AndroidManifest.xml中静态注册的receiver比在代码中用registerReceiver动态注册的优先级要低。发送方在send...

Arduino通过串口透传ESP 13板与java程序交互

ESP13---是一个无线板子,配置通过热点通信Arduino通过串口透传ESP13板与java程序交互...

zookeeper的Leader选举源码解析(zookeeper角色选举角色包括)

作者:京东物流梁吉超zookeeper是一个分布式服务框架,主要解决分布式应用中常见的多种数据问题,例如集群管理,状态同步等。为解决这些问题zookeeper需要Leader选举进行保障数据的强一致...

接待外国人英文口语(接待外国友人的英语口语对话)

接待外国人英文口语询问访客身份:  MayIhaveyourname,please?  请问您贵姓?  Whatcompanyareyoufrom?  您是哪个公司的?  Could...

一文深入理解AP架构Nacos注册原理

Nacos简介Nacos是一款阿里巴巴开源用于管理分布式微服务的中间件,能够帮助开发人员快速实现动态服务发现、服务配置、服务元数据及流量管理等。这篇文章主要剖析一下Nacos作为注册中心时其服务注册与...

Android面试宝典之终极大招(android面试及答案)

以下内容来自兆隆IT云学院就业部,根据多年成功就业服务经验,以及职业素养课程部分内容,归纳总结:18.请描述一下Intent和IntentFilter。Android中通过Intent...

除了Crontab,Swoole Timer也可以实现定时任务的

一般的定时器是怎么实现的呢?我总结如下:1.使用Crontab工具,写一个shell脚本,在脚本中调用PHP文件,然后定期执行该脚本;2.ignore_user_abort()和set_time_li...

Spark源码阅读:DataFrame.collect 作业提交流程思维导图

本文分为两个部分:作业提交流程思维导图关键函数列表作业提交流程思维导图...

使用Xamarin和Visual Studio开发Android可穿戴设备应用

搭建开发环境我们需要做的第一件事情是安装必要的工具。因此,你需要首先安装VisualStudio。如果您使用的是VisualStudio2010,2012或2013,那么请确保它是一个专业版本或...

Android开发者必知的5个开源库(android 开发相关源码精编解析)

过去的时间里,Android开发逐步走向成熟,一个个与Android相关的开发工具也层出不穷。不过,在面对各种新鲜事物时,不要忘了那些我们每天使用的大量开源库。在这里,向大家介绍的就是,在这个任劳任怨...

Android事件总线还能怎么玩?(android实现事件处理的步骤)

顾名思义,AndroidEventBus是一个Android平台的事件总线框架,它简化了Activity、Fragment、Service等组件之间的交互,很大程度上降低了它们之间的耦合,使我们的代码...

Android 开发中文引导-应用小部件

应用小部件是可以嵌入其它应用(例如主屏幕)并收到定期更新的微型应用视图。这些视图在用户界面中被叫做小部件,并可以用应用小部件提供者发布。可以容纳其他应用部件的应用组件叫做应用部件的宿主(1)。下面的截...

取消回复欢迎 发表评论: