angularjs的另外一种表单验证方式是自动验证,即通过directive来实现,除了angularjs自带的directive,还需要用到angular-auto-validate这个第三方module。
有关angular-auto-validate:
为了实现错误信息本地化,还需要angular-localize这个第三方module:
<script src="../node_modules/angular-sanitize/angular-sanitize.min.js"></script> <script src="../node_modules/angular-localize/angular-localize.min.js"></script>
此外,当点击提交表单按钮,需要禁用按钮并显示一种等待效果,需要用到angular-ladda这个第三方module:
<link rel="stylesheet" href="../bower_components/ladda/dist/ladda-themeless.min.css"/> <script src="../bower_components/ladda/dist/spin.min.js"></script> <script src="../bower_components/ladda/dist/ladda.min.js"></script> <script src="../bower_components/angular-ladda/dist/angular-ladda.min.js"></script>
页面如下:
<html>
<head>
<meta charset="gb2312">
<title></title>
<link rel="stylesheet" href="../node_modules/bootstrap/dist/css/bootstrap.min.css"/>
<link rel="stylesheet" href="../bower_components/ladda/dist/ladda-themeless.min.css"/>
<link rel="stylesheet" href="../css/main.css"/>
</head>
<body>
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<a href="/" class="navbar-brand">Form Validating Auto</a>
</div>
</div>
</nav>
<div class="container main-content" ng-controller="myCtrl1">
<!--novalidate让表单不要使用html验证-->
<!--theForm变成scope的一个字段-->
<form ng-submit="onSubmit()" novalidate="novalidate">
<div class="form-group">
<label for="name" class="control-label">Name</label>
<input type="text" class="form-control" id="name" ng-model="formModel.name" required="required"/>
</div>
<div class="form-group">
<label for="email" class="control-label">Email</label>
<input type="email" class="form-control" id="email" ng-model="formModel.email" required="required"/>
</div>
<div class="form-group">
<label for="username" class="control-label">Username</label>
<input type="text"
class="form-control"
id="username"
ng-model="formModel.username"
required="required"
ng-pattern="/^[A-Za-z0-9_]{1,32}$/"
ng-minlength="7"
ng-pattern-err-type="badUsername"
/>
</div>
<div class="form-group">
<label for="age" class="control-label">Age</label>
<input type="number"
class="form-control"
id="age"
ng-model="formModel.age"
required="required"
min="18"
max="65"
ng-min-err-type="tooYoung"
ng-max-err-type="tooOld"
/>
</div>
<div class="form-group">
<label for="sex" class="control-label">Sex</label>
<select name="sex" id="sex" class="form-control" ng-model="formModel.sex" required="required">
<option value="">Please choose</option>
<option value="male">Mail</option>
<option value="femail">Femail</option>
</select>
</div>
<div class="form-group">
<label for="password" class="control-label">Password</label>
<input type="text" class="form-control" id="password" ng-model="formModel.password" required="required" ng-minlength="6"/>
</div>
<div class="form-group">
<!--<button class="btn btn-primary" ng-click="onSubmit()">Register</button>-->
<button class="btn btn-primary"
ladda = "submitting"
data-style="expand-right"
type="submit">
<span ng-show="submitting">正在注册...</span>
<span ng-show="!submitting">注册</span>
</button>
</div>
<pre class="brush:php;toolbar:false;">
{{formModel | json}}
每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号