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

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

yuyutoo 2024-11-14 19:54 5 浏览 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>

相关推荐

墨尔本一华裔男子与亚裔男子分别失踪数日 警方寻人

中新网5月15日电据澳洲新快网报道,据澳大利亚维州警察局网站消息,22岁的华裔男子邓跃(Yue‘Peter’Deng,音译)失踪已6天,维州警方于当地时间13日发布寻人通告,寻求公众协助寻找邓跃。华...

网络交友须谨慎!美国犹他州一男子因涉嫌杀害女网友被捕

伊森·洪克斯克(图源网络,侵删)据美国广播公司(ABC)25日报道,美国犹他州一名男子于24日因涉嫌谋杀被捕。警方表示,这名男子主动告知警局,称其杀害了一名在网络交友软件上认识的25岁女子。雷顿警...

一课译词:来龙去脉(来龙去脉 的意思解释)

Mountainranges[Photo/SIPA]“来龙去脉”,汉语成语,本指山脉的走势和去向,现比喻一件事的前因后果(causeandeffectofanevent),可以翻译为“i...

高考重要考点:range(range高考用法)

range可以用作动词,也可以用作名词,含义特别多,在阅读理解中出现的频率很高,还经常作为完形填空的选项,而且在作文中使用是非常好的高级词汇。...

C++20 Ranges:现代范围操作(现代c++白皮书)

1.引言:C++20Ranges库简介C++20引入的Ranges库是C++标准库的重要更新,旨在提供更现代化、表达力更强的方式来处理数据序列(范围,range)。Ranges库基于...

学习VBA,报表做到飞 第二章 数组 2.4 Filter函数

第二章数组2.4Filter函数Filter函数功能与autofilter函数类似,它对一个一维数组进行筛选,返回一个从0开始的数组。...

VBA学习笔记:数组:数组相关函数—Split,Join

Split拆分字符串函数,语法Split(expression,字符,Limit,compare),第1参数为必写,后面3个参数都是可选项。Expression为需要拆分的数据,“字符”就是以哪个字...

VBA如何自定义序列,学会这些方法,让你工作更轻松

No.1在Excel中,自定义序列是一种快速填表机制,如何有效地利用这个方法,可以大大增加工作效率。通常在操作工作表的时候,可能会输入一些很有序的序列,如果一一录入就显得十分笨拙。Excel给出了一种...

Excel VBA入门教程1.3 数组基础(vba数组详解)

1.3数组使用数组和对象时,也要声明,这里说下数组的声明:'确定范围的数组,可以存储b-a+1个数,a、b为整数Dim数组名称(aTob)As数据类型Dimarr...

远程网络调试工具百宝箱-MobaXterm

MobaXterm是一个功能强大的远程网络工具百宝箱,它将所有重要的远程网络工具(SSH、Telnet、X11、RDP、VNC、FTP、MOSH、Serial等)和Unix命令(bash、ls、cat...

AREX:携程新一代自动化回归测试工具的设计与实现

一、背景随着携程机票BU业务规模的不断提高,业务系统日趋复杂,各种问题和挑战也随之而来。对于研发测试团队,面临着各种效能困境,包括业务复杂度高、数据构造工作量大、回归测试全量回归、沟通成本高、测试用例...

Windows、Android、IOS、Web自动化工具选择策略

Windows平台中应用UI自动化测试解决方案AutoIT是开源工具,该工具识别windows的标准控件效果不错,但是当它遇到应用中非标准控件定义的UI元素时往往就无能为力了,这个时候选择silkte...

python自动化工具:pywinauto(python快速上手 自动化)

简介Pywinauto是完全由Python构建的一个模块,可以用于自动化Windows上的GUI应用程序。同时,它支持鼠标、键盘操作,在元素控件树较复杂的界面,可以辅助我们完成自动化操作。我在...

时下最火的 Airtest 如何测试手机 APP?

引言Airtest是网易出品的一款基于图像识别的自动化测试工具,主要应用在手机APP和游戏的测试。一旦使用了这个工具进行APP的自动化,你就会发现自动化测试原来是如此简单!!连接手机要进行...

【推荐】7个最强Appium替代工具,移动App自动化测试必备!

在移动应用开发日益火爆的今天,自动化测试成为了确保应用质量和用户体验的关键环节。Appium作为一款广泛应用的移动应用自动化测试工具,为测试人员所熟知。然而,在不同的测试场景和需求下,还有许多其他优...

取消回复欢迎 发表评论: