簡述AngularJS的控制器的使用

來源:互聯網
上載者:User

   這篇文章主要介紹了AngularJS的控制器的使用,文中給出了具體的用於HTML中的對象樣本,需要的朋友可以參考下

  AngularJS應用主要依賴於控制器來控制資料在應用程式中的流動。控制器採用ng-controller指令定義。控制器是一個包含屬性/屬性和JavaScript對象的功能。每個控制器接受$scope參數指定應用程式/模組,由控制器控制。

  ?

1 2 3 <div ng-app="" ng-controller="studentController"> ... </div>

  在這裡,我們已經聲明採用ng-controller指令的控制器studentController。作為下一步,我們將定義studentController如下

  ?

1 2 3 4 5 6 7 8 9 10 11 12 13 <script> function studentController($scope) { $scope.student = { firstName: "yiibai", lastName: "com", fullName: function() { var studentObject; studentObject = $scope.student; return studentObject.firstName + " " + studentObject.lastName; } }; } </script>

  studentController 定義 $scope 作為JavaScript對象參數。

  $scope 表示應用程式,使用studentController對象。

  $scope.student 是studentController對象的屬性。

  firstName和lastName是$scope.student 對象的兩個屬性。我們已經通過了預設值給他們。

  fullName 是$scope.student對象的函數,它的任務是返回合并的名稱。

  在fullName函數中,我們現在要學生對象返回組合的名字。

  作為一個說明,還可以定義控制器對象在單獨的JS檔案,並把有關檔案中的HTML頁面。

  現在可以使用ng-model或使用運算式如下使用studentController學生的屬性。

  ?

1 2 3 4 Enter first name: <input type="text" ng-model="student.firstName"><br> Enter last name: <input type="text" ng-model="student.lastName"><br> <br> You are entering: {{student.fullName()}}

  現在有 student.firstName 和 student.lastname 兩個輸入框。

  現在有 student.fullName()方法添加到HTML。

  現在,只要輸入first name和lastname輸入框中輸入什麼,可以看到兩個名稱自動更新。

  例子

  下面的例子將展示使用控制器。

  testAngularJS.html 檔案內容如下:

  ?

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 <html> <head> <title>Angular JS Controller</title> </head> <body> <h2>AngularJS Sample Application</h2> <div ng-app="" ng-controller="studentController">   Enter first name: <input type="text" ng-model="student.firstName"><br><br> Enter last name: <input type="text" ng-model="student.lastName"><br> <br> You are entering: {{student.fullName()}} </div> <script> function studentController($scope) { $scope.student = { firstName: "Mahesh", lastName: "Parashar", fullName: function() { var studentObject; studentObject = $scope.student; return studentObject.firstName + " " + studentObject.lastName; } }; } </script> <script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.2.15/angular.min.js"></script> </body> </html>

  輸出

  在Web瀏覽器開啟textAngularJS.html,看到以下結果:

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.