最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

AngularJS使用指令增強標(biāo)準(zhǔn)表單元素功能

 更新時間:2016年07月01日 15:45:08   作者:super_yang_android  
這篇文章主要介紹了AngularJS使用指令增強標(biāo)準(zhǔn)表單元素功能,包括數(shù)據(jù)綁定、建立模型屬性、驗證表單等,感興趣的小伙伴們可以參考一下

Angular 可使用指令無縫地增強標(biāo)準(zhǔn)表單元素的功能,我們將討論它的優(yōu)點,包括:
數(shù)據(jù)綁定、建立模型屬性、驗證表單、驗證表單后反饋信息、表單指令屬性
下面我們通過案例驗證他們的用法:

一、雙向數(shù)據(jù)綁定(ng-model)和建立模型屬性

<!DOCTYPE>
<!-- use module -->
<html ng-app="exampleApp">
<head>
 <title>Angular Directive</title>
 <meta charset="utf-8"/>
 <link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
 <link rel="stylesheet" type="text/css" href="css/bootstrap-theme.min.css">
</head>
<body>
<!-- 案例:雙向數(shù)據(jù)綁定 -->
<div class="panel" ng-controller="defaultCtrl">
 <!-- 過濾complete為false的項 -->
 <h3 class="panel-header">To Do List<span class="label label-info">{{(todos | filter : {complete : 'false'}).length}}</span></h3>
 <div class="row-fluid">
 <div class="col-xs-6">
  <div class="form-group row">
  <label for="action">Action: </label>
  <!-- ng-model 雙向綁定 -->
  <!-- 雙向數(shù)據(jù)綁定:數(shù)據(jù)模型(Module)和視圖(View)之間的雙向綁定。 -->
  <!-- 當(dāng)其中一方發(fā)送更替后,另一個也發(fā)生變化 -->
  <input type="text" id="action" ng-model="newToDo.action" class="form-control">
  </div>
  <div class="form-group row">
  <label for="location">Location: </label>
  <select id="location" class="form-control" ng-model="newToDo.location">
   <option>Home</option>
   <option>Office</option>
   <option>Mall</option>
  </select>
  </div>
  <!-- ng-click點擊Add添加項目 -->
  <button class="btn btn-primary btn-block" ng-click="addNewItem(newToDo)">Add</button>
 </div>
 <div class="col-xs-6">
  <table class="table table-bordered table-striped">
  <thead>
   <tr><th>#</th><th>Action</th><th>Done</th></tr>
  </thead>
  <tbody>
   <tr ng-repeat="item in todos">
   <!-- $index默認(rèn)為0,遞增 -->
   <td>{{$index + 1}}</td>
   <td>{{item.action}}</td>
   <td>
    <input type="checkbox" ng-model="item.complete"/>
   </td>
   </tr>
  </tbody>
  </table>
 </div>
 </div>
</div>
<script type="text/javascript" src="js/angular.min.js"></script>
<script type="text/javascript">
// define a module named exampleApp
angular.module("exampleApp", [])
 // define a controller named defaultCtrl
 .controller('defaultCtrl', function ($scope) {
 // 數(shù)據(jù)模型
 $scope.todos = [
  { action : "play ball", complete : false },
  { action : "singing", complete : false },
  { action : "running", complete : true },
  { action : "dance", complete : true },
  { action : "swimming", complete : false },
  { action : "eating", complete : false },
 ];
 // 添加數(shù)據(jù)到模型
 $scope.addNewItem = function (newItem) {
  // 判斷是否存在
  if (angular.isDefined(newItem) && angular.isDefined(newItem.action) && angular.isDefined(newItem.location)) {
  $scope.todos.push({
   action : newItem.action + " (" + newItem.location + ")",
   complete : false
  })
  }
 }
 })
</script>
</body>
</html>

首先定義了數(shù)據(jù)模型scope.todos和添加數(shù)據(jù)到模型的addNewItem()方法,接著使用雙向數(shù)據(jù)綁定ng−model將視圖中表單的action和location和模型中的 scope.todos進行綁定,
最后通過ng-click點擊屬性觸發(fā)添加數(shù)據(jù)到模型的addNewItem()方法完成操作

這里寫圖片描述

二、驗證表單
在我們提交表單到服務(wù)器之前,我們需要來檢測一下用戶提交的數(shù)據(jù)是否存在或者是說合法,否則提交無用的數(shù)據(jù)會浪費資源。

<!DOCTYPE>
<!-- use module -->
<html ng-app="exampleApp">
<head>
 <title>Angular Directive</title>
 <meta charset="utf-8"/>
 <link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
 <link rel="stylesheet" type="text/css" href="css/bootstrap-theme.min.css">
 <style>

 </style>
</head>
<body>

<div id="todoPanel" class="panel" ng-controller="defaultCtrl">
 <!-- novalidate表示拋棄瀏覽器自帶的表單驗證,用NG自己的驗證 -->
 <!-- ng-submit="addUser(newUser) 當(dāng)表單數(shù)據(jù)合法時,提交數(shù)據(jù)到模型 -->
 <form name="myForm" novalidate ng-submit="addUser(newUser)">
 <div class="well">
  <div class="form-group">
  <label>Name:</label>
  <!-- required 表該表單必填 -->
  <!-- ng-model="newUser.name" 雙向數(shù)據(jù)綁定 -->
  <input name="userName" type="text" class="form-control" required ng-model="newUser.name">
  </div>
  <div class="form-group">
  <label>Email:</label>
  <input name="userEmail" type="email" class="form-control"required ng-model="newUser.email">
  </div>
  <div class="checkbox">
   <label>
   <input name="agreed" type="checkbox"ng-model="newUser.agreed" required>
   I agree to the terms and conditions
   </label>
  </div>
  <!-- g-disabled="myForm.$invalid" 當(dāng)前面填寫表單中的任意一項不合法時,該提交按鈕都是不可用的 -->
  <button type="submit" class="btn btn-primary btn-block" ng-disabled="myForm.$invalid">
  OK
  </button>
 </div>
 <div class="well">
  Message: {{message}}
  <div>
  Valid: {{myForm.$valid}}
  </div>
 </div>
 </form>
</div>
<script type="text/javascript" src="js/angular.min.js"></script>
<script type="text/javascript">
angular.module("exampleApp", [])
 .controller("defaultCtrl", function ($scope) {
 // 添加用戶數(shù)據(jù)到模型$scope.message
 $scope.addUser = function (userDetails) {
 $scope.message = userDetails.name
 + " (" + userDetails.email + ") (" + userDetails.agreed + ")";
 }
 // 顯示驗證前后的結(jié)果
 $scope.message = "Ready";
});
</script>
</body>
</html>

首先定義了數(shù)據(jù)模型scope.message和添加數(shù)據(jù)到模型的addUser()方法,接著在視圖中添加表單元素validate、name屬性和ng−submit屬性隨后使用雙向數(shù)據(jù)綁定ng−model將視圖中表單的action和location和模型中的 scope.todos進行綁定,且使用驗證屬性required和email表單
之后對提交按鈕進行禁用,僅當(dāng)表單數(shù)據(jù)全部合法才能用,不合法都禁用(ng-disabled=”myForm.$invalid”)
最后通過ng-submit屬性提交數(shù)據(jù)到模型的addUser()方法完成操作

這里寫圖片描述

三、表單驗證反饋信息
我們僅僅對表單進行驗證是遠遠不夠的,因為用戶不知道為什么出錯而感到困惑,因此我們需要反饋信息給用戶,讓他們明白該填寫什么
先介紹一下NG中要驗證的類

ng-pristine      用戶沒交互元素被添加到這個類
ng-dirty          用戶交互過元素被添加到這個類
ng-valid         驗證結(jié)果有效元素被添加到這個類
ng-invalid      驗證結(jié)果無效元素被添加到這個類

<!DOCTYPE>
<!-- use module -->
<html ng-app="exampleApp">
<head>
 <title>Angular Directive</title>
 <meta charset="utf-8"/>
 <link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
 <link rel="stylesheet" type="text/css" href="css/bootstrap-theme.min.css">
 <style>
 /*交互且必填樣式*/
 form.validate .ng-invalid-required.ng-dirty {
  background-color: orange;
 } 
 /*交互不合法樣式*/
 form .ng-invalid.ng-dirty {
  background-color: lightpink;
 }
 /*郵件不合法且交互過*/
 form.validate .ng-invalid-email.ng-dirty {
  background-color: lightgoldenrodyellow;
 }
 div.error{
  color: red;
  font-weight: bold;
 }
 div.summary.ng-valid{
  color: green;
  font-weight: bold;
 }
 div.summary.ng-invalid{
  color: red;
  font-weight: bold;
 }
 </style>
</head>
<body>

<!-- 案例:雙向數(shù)據(jù)綁定 -->
<div class="panel" ng-controller="defaultCtrl">
 <!-- novalidate="novalidate" 僅僅NG表單驗證 -->
 <!-- ng-submit="addUser(newUser)" 添加數(shù)據(jù)到模型 -->
 <!-- ng-class="showValidation ? 'validate' : '' 當(dāng)驗證合法,showValidation為true,這是觸發(fā)ng-class為validate -->
 <form name="myForm" class="well" novalidate="novalidate" ng-submit="addUser(newUser)" ng-class="showValidation ? 'validate' : ''">
 <div class="form-group">
 <div class=" form-group">
  <label>Email: </label>
  <input name="email" type="email" class="form-control" required="required" ng-model="newUser.email">
  <!-- 驗證提示信息 -->
  <div class="error">
  <!-- 顯示反饋信息 -->
  <span ng-class="error" ng-show="showValidation">
   {{getError(myForm.email.$error)}}
  </span>
  </div>
 </div>
 <button type="submit" class="btn btn-primary btn-block" >OK</button>
 <div class="well">
  Message : {{message}}
  <!-- 當(dāng)myForm.$valid驗證合法,showValidation為true,這是觸發(fā)ng-class為ng-valid,否則,ng-invalid -->
  <div class="summary" ng-class="myForm.$valid ? 'ng-valid' : 'ng-invalid'" >
  Valid : {{myForm.$valid}}
  </div>
 </div>
 </form>
</div>
<script type="text/javascript" src="js/angular.min.js"></script>
<script type="text/javascript">
// define a module named exampleApp
angular.module("exampleApp", [])
 // define a controller named defaultCtrl
 .controller('defaultCtrl', function ($scope) {
 // 添加數(shù)據(jù)到模型
 $scope.addUser = function (userDetails) {
  if (myForm.$valid) {
  $scope.message = userDetails.name + " (" + userDetails.email + ") (" + userDetails.agreed + ")"; 
  } else {
  $scope.showValidation = true;
  }
 }
 // 數(shù)據(jù)模型
 $scope.message = "Ready";
 // 錯誤反饋信息
 // 當(dāng)沒有填寫信息時,提示Please enter a value
 // 當(dāng)驗證出錯時,提示Please enter a valid email address
 $scope.getError = function (error) {
  if (angular.isDefined(error)) {
  if (error.required) {
   return "Please enter a value";
  } else if (error.email) {
   return "Please enter a valid email address";
  }
  }
 }

 })
</script>
</body>
</html>

首先在style中定義反饋信息的樣式、表單驗證的樣式
接著在JS中寫入錯誤時反饋的信息
最后在視圖中綁定ng-class

這里寫圖片描述

四、表單指令屬性
1.使用input元素

<!DOCTYPE>
<!-- use module -->
<html ng-app="exampleApp">
<head>
 <title>Angular Directive</title>
 <meta charset="utf-8"/>
 <link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
 <link rel="stylesheet" type="text/css" href="css/bootstrap-theme.min.css">
 <style>

 </style>
</head>
<body>


<div class="panel" id="todoPanel" ng-controller="defaultCtrl">
 <form name="myForm" novalidate="novalidate">
 <div class="well">
  <div class="form-group">
  <label>Text: </label>
  <!-- ng-required="requireValue" 通過數(shù)據(jù)綁定required值 -->
  <!-- ng-minlength="3" ng-maxlength="10" 允許最大最小字符-->
  <!-- ng-pattern="matchPattern" 正則匹配 -->
  <input name="sample" class="form-control" ng-model="inputValue" ng-required="requireValue" ng-minlength="3"
  ng-maxlength="10" ng-pattern="matchPattern">
  </div>
 </div>
 <div class="well">
  <!-- 必填 -->
  <p>Required Error: {{myForm.sample.$error.required}}</p>
  <!-- 最小最大長度 -->
  <p>Min Length Error: {{myForm.sample.$error.minlength}}</p>
  <p>Max Length Error: {{myForm.sample.$error.maxlength}}</p>
  <!-- 只匹配小寫字母 -->
  <p>Pattern Error: {{myForm.sample.$error.pattern}}</p>
  <!-- 驗證合法 -->
  <p>Element Valid: {{myForm.sample.$valid}}</p>
 </div>
 </form>

</div>
<script type="text/javascript" src="js/angular.min.js"></script>
<script type="text/javascript">
// define a module named exampleApp
angular.module("exampleApp", [])
 // define a controller named defaultCtrl
 .controller('defaultCtrl', function ($scope) {
 $scope.requireValue = true;
 $scope.matchPattern = new RegExp("^[a-z]");
 })
</script>
</body>
</html>

這里寫圖片描述

2.選擇列表

<!DOCTYPE>
<!-- use module -->
<html ng-app="exampleApp">
<head>
 <title>Angular Directive</title>
 <meta charset="utf-8"/>
 <link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
 <link rel="stylesheet" type="text/css" href="css/bootstrap-theme.min.css">
 <style>

 </style>
</head>
<body>


<div class="panel" id="todoPanel" ng-controller="defaultCtrl">
 <form name="myForm" novalidate="novalidate">
 <div class="well">
  <div class="form-group">
  <label>Selection an action: </label>
  <!-- 遍歷列表 按照item.place排序 item.id as item.action 改變選項值-->
  <!-- ng-options="item.id as item.action group by item.place for item in todos" -->
  <select ng-model="selectValue" ng-options="item.id as item.action group by item.place for item in todos">
   <option value="" class="">(Pick One)</option>
  </select>
  </div>
 </div>
 <div class="well">
  <p>Selected: {{selectValue || "None"}}</p>
 </div>
 </form>

</div>
<script type="text/javascript" src="js/angular.min.js"></script>
<script type="text/javascript">
// define a module named exampleApp
angular.module("exampleApp", [])
 // define a controller named defaultCtrl
 .controller('defaultCtrl', function ($scope) {
 // 模型數(shù)據(jù)
 $scope.todos = [
  { id : 100, place : "School", action : "play ball", complete : false },
  { id : 200, place : "Home", action : "eating", complete : false },
  { id : 300, place : "Home", action : "watch TV", complete : true }
 ];
 })
</script>
</body>
</html>

這里寫圖片描述

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

  • angularjs請求數(shù)據(jù)的方法示例

    angularjs請求數(shù)據(jù)的方法示例

    這篇文章主要給大家介紹了關(guān)于angularjs請求數(shù)據(jù)的相關(guān)資料,文中通過示例代碼介紹的非常詳細,對大家學(xué)習(xí)或者使用angularjs具有一定的參考學(xué)習(xí)價值,需要的朋友們下面來一起學(xué)習(xí)學(xué)習(xí)吧
    2019-08-08
  • AngularJS基礎(chǔ) ng-mouseenter 指令示例代碼

    AngularJS基礎(chǔ) ng-mouseenter 指令示例代碼

    本文主要介紹AngularJS ng-mouseenter 指令,這里對ng-mouseenter 指令基礎(chǔ)資料做了詳細整理,并附代碼實例,有需要的小伙伴可以參考下
    2016-08-08
  • AngularJS語法詳解(續(xù))

    AngularJS語法詳解(續(xù))

    本文續(xù)上文,接著介紹AngularJS語法,和上文一樣,都是通過示例來向大家分析說明,非常不錯的一篇文章,推薦給大家。
    2015-01-01
  • 給angular加上動畫效遇到的問題總結(jié)

    給angular加上動畫效遇到的問題總結(jié)

    本文給大家總結(jié)了一下在angular中給ng-repeat列表加上動畫效果時所遇到的問題及解決方法,推薦給大家,希望大家能夠喜歡。
    2016-02-02
  • Angular中sweetalert彈框的基本使用教程

    Angular中sweetalert彈框的基本使用教程

    這篇文章主要給大家介紹了關(guān)于Angular中sweetalert彈框的基本使用的相關(guān)資料,文中通過示例代碼介紹的非常詳細,對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧
    2018-07-07
  • AngularJS入門教程之XHR和依賴注入詳解

    AngularJS入門教程之XHR和依賴注入詳解

    本文主要介紹AngularJS XHR和依賴注入,這里整理了詳細資料和示例代碼,有興趣的小伙伴可以參考下
    2016-08-08
  • 最棒的Angular2表格控件

    最棒的Angular2表格控件

    最好的Angular2表格控件,滿足更小、更快、更熟悉的基本要求,感興趣的小伙伴們可以參考一下
    2016-08-08
  • Angular的自定義指令以及實例

    Angular的自定義指令以及實例

    本文主要介紹了Angular的自定義指令,并提供了實例代碼,具有很好的參考價值,下面跟著小編一起來看下吧
    2016-12-12
  • angular中使用Socket.io實例代碼

    angular中使用Socket.io實例代碼

    本篇文章主要介紹了angular中使用Socket.io實例代碼,小編覺得挺不錯的,現(xiàn)在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧
    2017-06-06
  • Angular2使用vscode斷點調(diào)試ts文件的方法

    Angular2使用vscode斷點調(diào)試ts文件的方法

    本篇文章主要介紹了Angular2使用vscode斷點調(diào)試ts文件的方法,小編覺得挺不錯的,現(xiàn)在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧
    2017-12-12

最新評論

贺兰县| 麟游县| 兴化市| 云林县| 喀喇沁旗| 驻马店市| 莱芜市| 大冶市| 六枝特区| 达日县| 吕梁市| 牡丹江市| 慈溪市| 华宁县| 自贡市| 成安县| 和田市| 奉新县| 桂林市| 呼图壁县| 揭阳市| 辉南县| 江达县| 咸阳市| 河南省| 将乐县| 广南县| 红桥区| 舞钢市| 沙洋县| 工布江达县| 奉贤区| 周宁县| 长泰县| 西峡县| 云浮市| 恩平市| 吉水县| 天津市| 黔江区| 灵山县|