91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何入門AngularJS

發布時間:2021-11-17 09:59:46 來源:億速云 閱讀:156 作者:柒染 欄目:web開發

今天就跟大家聊聊有關如何入門AngularJS,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。

介紹

首先需要指出什么是angular js,其實說白了angular  js就是Javascript的一個類庫,我們使用這個類庫可以很容易的創建web頁面。雙向綁定是angular  js其中的一個重要特征,這也是相對于其他的Javascript的類庫來說angular  js中很重要的特征。雙向綁定即是當你修改任何屬性的值的時候,相關聯的html元素也將改變,你并不需要額外的去修改。

Angular js還為我們提供了MVVM(Model View ViewModel)的模型。MVVM的意思就是說Model是一個真實的對象,我們使用這個對象創建需要在頁面顯示的模型,并且調用視圖模型。View(視圖)即是我們需要輸出的頁面。

背景

如果你沒有使用angular js或者其它的和angular js有相似功能的類庫,比如knockout.js,那么當我們編寫代碼的時候將會寫更多更復雜的代碼。所以說使用angular js編寫應用程序更快更高效,并且比其它的類庫更容易管理。

代碼使用

下面我們將通過一個簡單的例子來逐漸的了解angular js。

為了更好的理解angular js的知識,我們使用asp.net作為后臺的應用程序來實現簡單的增刪改查的操作,并且在這個例子中我們使用的是靜態列表形式來展現增刪改查的操作。

在數據模型中有5個屬性,UserName、Address、Salary、IsMarried和Email。在視圖中列出了這些屬性的記錄,并且在每一條數據后面都有一個刪除和修改按鈕。通過這些按鈕我們能創建、修改和刪除靜態列表。

現在首先讓我們了解一下以下例子中使用到的屬性的含義

data-ng-app——表明這是angular 要處理的元素

data-ng-controller——指定用來處理此元素的angular 控制器

<div id="divUserList" data-ng-app="userApp" data-ng-controller="userAppCtrl"> </div>

data-ng-bind&mdash;&mdash;指定該元素綁定model中的哪個屬性(上面列出的UserName、Address、Salary、IsMarried或者是Email)

<strong data-ng-bind="UserName"></strong>

比如UserName是Model的屬性并且將該屬性綁定到定義的元素

data-ng-repeat&mdash;&mdash;用來指定循環的數據

<tr data-ng-repeat="x in UserData | limitTo:20"  >

使用上面的語法,我們對UserData這個angular  對象屬性進行循環,取出里面的數據。limitTo:20表明最多循環20次,這是angular中的一個過濾器。當然angular.js中還可以使用 其他的過濾器,比如uppercase、lowercase和currency等。

data-ng-click&mdash;&mdash;用來綁定點擊事件

<input type="button" id="btnDelete" value="Delete" data-ng-click="DeleteRow($index)" />

$index&mdash;&mdash;表示循環中的索引

data-ng-model&mdash;&mdash;將angular 模型應用于html dom中,這表示當修改input輸入框中的值時相應的model中的屬性也會改變

<input type="text" data-ng-model="UserName" required />

data-ng-disabled&mdash;&mdash;通過該屬性的值來禁用某個元素或者不禁用

<input type="button" id="btnSaveAll" value="Save" data-ng-click="SaveRecord()" data-ng-disabled="CheckRecord()" />

下面讓我們看一下下面的代碼

var angularuserApp = angular.module("userApp", []);
angularuserApp.controller("userAppCtrl", function ($scope, $http, $interval, $window,$timeout) {})

***行代碼創建了一個對象,這是由html dom中data-ng-app指定的。另一行代碼創建了一個控制器,是由data-ng-controller指定的。

$http用來指定服務端的地址;$interval 和 $timeout就類似于jquery中的interval和timeout,這兩個變量在這個例子中只是定義但并沒有被使用到,其工作原理和jquery中的相同;$window的定義和Javascript中的window對象相同,使用這個變量可以實現你想用window對象實現的效果。

下面是所有HTML代碼

<div id="divUserList" data-ng-app="userApp" data-ng-controller="userAppCtrl">     <table class="table-striped table-hover" style="width:100%;">         <colgroup>             <col style="width:15%;"/>             <col style="width:25%;" />             <col style="width:10%;" />             <col style="width:10%;" />             <col style="width:15%;" />             <col style="width:10%;" />             <col style="width:7%;" />             <col style="width:7%;" />         </colgroup>         <thead>             <tr>                 <th>User Name</th>                 <th>Address</th>                 <th>Email</th>                 <th>Salary</th>                 <th>Is Married</th>             </tr>         </thead>         <tbody>             <tr data-ng-repeat="x in UserData | limitTo:20"  >                 <td>                     <strong data-ng-bind="x.UserName"></strong>                 </td>                 <td><span data-ng-bind="x.Address"></span></td>                 <td><span data-ng-bind="x.Email"></span></td>                 <td><span data-ng-bind="x.Salary"></span></td>                 <td><span data-ng-bind="x.IsMarried"></span></td>                 <td><input type="button" id="btnEdit" value="Edit" data-ng-click="EditRow(x)" /> </td>                 <td><input type="button" id="btnDelete" value="Delete" data-ng-click="DeleteRow($index)" /> </td>             </tr>         </tbody>     </table>     <br />     <br />     <form name="myform" novalidate>         <h4> Edit User Information </h4>         <table class="table-striped table-hover" style="width:100%;">             <tr>                 <td>                     User Name :                 </td>                 <td>                     <input type="text" data-ng-model="UserName" required />                 </td>             </tr>             <tr>                 <td>                     Address :                 </td>                 <td>                     <input type="text" data-ng-model="Address" required />                 </td>             </tr>             <tr>                 <td>                     Email :                 </td>                 <td>                     <input type="email" data-ng-model="Email" />                 </td>             </tr>             <tr>                 <td>                     Salary :                 </td>                 <td>                     <input type="number" data-ng-model="Salary" />                 </td>             </tr>             <tr>                 <td>                     Is Married :                 </td>                 <td>                     <input type="checkbox" data-ng-model="IsMarried" />                 </td>             </tr>             <tr>                 <td colspan="2">                     <input type="button" id="btnSaveAll" value="Save" data-ng-click="SaveRecord()" data-ng-disabled="CheckRecord()" />                     <input type="button" id="btnClear" value="Clear" data-ng-click="ClearRecord()" data-ng-disabled="CheckRecord()" />                 </td>              </tr>         </table>     </form> </div> <script>     var angularuserApp = angular.module("userApp", []);     angularuserApp.controller("userAppCtrl", function ($scope, $http, $interval, $window, $timeout) {         //==Intit Value================         $scope.UserName = "";         $scope.Address = "";         $scope.Email = "";         $scope.Salary = null;         $scope.IsMarried = null;         //==Intit Value================         $scope.LoadIntialData = function () {             var routeurl = '@Url.Action("GetData", "User")';             $http.get(routeurl).success(function (data) {                 $scope.UserData = data;             }).error(function (e) {                 // error handling             });         }         $scope.LoadIntialData();         $scope.DeleteRow = function (index) {             $scope.UserData.splice(index, 1);             //==================if you use real time application then need to call to conroller from remove record from db=======         }         $scope.EditRow = function (ele) {             $scope.UserName = ele.UserName;             $scope.Address = ele.Address;             $scope.Email = ele.Email;             $scope.Salary = ele.Salary;             $scope.IsMarried = ele.IsMarried;         }         $scope.SaveRecord = function () {             var invalidfiled = "";             if (!$scope.myform.$valid) {                 return;             }             else {                 var IsItemUpdate = false;                 $.each($scope.UserData, function (i, n) {                     if (n.UserName == $scope.UserName && n.Address == $scope.Address) {                         IsItemUpdate = true;                         n.Email = $scope.Email;                         n.Salary = $scope.Salary;                         n.IsMarried = $scope.IsMarried;                     }                 });                 if (IsItemUpdate == false) {                     var obj = new Object();                     obj.UserName = $scope.UserName;                     obj.Address = $scope.Address;                     obj.Email = $scope.Email;                     obj.Salary = $scope.Salary;                     obj.IsMarried = $scope.IsMarried;                     $scope.UserData.unshift(obj);                 }                 $scope.ClearRecord();                 //==================if you use real time application then need to call to conroller from save record from db=======             }         }         $scope.CheckRecord = function () {             if ($scope.UserName != "" && $scope.Address != "")                 return false;             else                 return true;         }         $scope.ClearRecord = function () {             $scope.UserName = "";             $scope.Address = "";             $scope.Email = "";             $scope.Salary = null;             $scope.IsMarried = null;         }     }); </script>

下面是控制器的實現代碼

public class UserController : Controller    {        //        // GET: /User/         public ActionResult Users()        {            return View();        }         public JsonResult GetData()        {            List<User> objList = new List<User>();             //==Create the test data for in view  ============================            User objuser = new User();            objuser.UserName = "Pragnesh Khalas";            objuser.Address = "B-25 Swaminarayan Park Naroda Ahmedabad";            objuser.Email = "pragnesh@gmail.com";            objuser.Salary = 9000;            objuser.IsMarried = true;            objList.Add(objuser);             objuser = new User();            objuser.UserName = "Rahul Patel";            objuser.Address = "A-40 Navkar Soci. Ahmedabad";            objuser.Email = "rahul@gmail.com";            objuser.Salary = 8000;            objuser.IsMarried = true;            objList.Add(objuser);             objuser = new User();            objuser.UserName = "Bhavin Patel";            objuser.Address = "D-10 Bharat Soci. Ahmedabad";            objuser.Email = "bhavin@gmail.com";            objuser.Salary = 6000;            objuser.IsMarried = true;            objList.Add(objuser);             return Json(objList, JsonRequestBehavior.AllowGet);        }     }

下面是模型代碼

public class User {     [Required]     public string UserName { get; set; }      [Required]     public string Address { get; set; }      [EmailAddress]     public string Email { get; set; }      public double? Salary { get; set; }     public bool? IsMarried { get; set; } }

看完上述內容,你們對如何入門AngularJS有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

阿荣旗| 正镶白旗| 天长市| 潍坊市| 吴旗县| 屯留县| 新郑市| 丰都县| 闽侯县| 玉环县| 扶余县| 驻马店市| 永安市| 马公市| 呼伦贝尔市| 拉孜县| 宜城市| 东乡族自治县| 米脂县| 庆元县| 丁青县| 环江| 大庆市| 荣昌县| 沐川县| 丹凤县| 临漳县| 会昌县| 巴塘县| 托里县| 隆化县| 积石山| 固安县| 溧水县| 丽水市| 鸡东县| 河北区| 甘孜| 张家界市| 子长县| 蓝山县|