AngularJS入門教程之控制器詳解_AngularJS

來源:互聯網
上載者:User

AngularJS 控制器

AngularJS 控制器 控制 AngularJS 應用程式的資料。

 AngularJS 控制器是常規的 JavaScript 對象。

AngularJS 控制器

AngularJS 應用程式被控制器控制。

ng-controller 指令定義了應用程式控制器。

控制器是 JavaScript 對象,由標準的 JavaScript 對象的建構函式 建立。

AngularJS 執行個體

<!DOCTYPE html><html><head><meta charset="utf-8"><script src="http://apps.bdimg.com/libs/angular.js/1.4.6/angular.min.js"></script></head><body><div ng-app="myApp" ng-controller="personCtrl">名: <input type="text" ng-model="firstName"><br>姓: <input type="text" ng-model="lastName"><br><br>姓名: {{fullName()}}</div><script>var app = angular.module('myApp', []);app.controller('personCtrl', function($scope) {  $scope.firstName = "John";  $scope.lastName = "Doe";  $scope.fullName = function() {    return $scope.firstName + " " + $scope.lastName;  }});</script></body></html>

運行結果:

名:
姓:

姓名: John Doe

AngularJS 應用程式由 ng-app 定義。應用程式在 <div> 內運行。

ng-controller="myCtrl" 屬性是一個 AngularJS 指令。用於定義一個控制器。

myCtrl 函數是一個 JavaScript 函數。

AngularJS 使用$scope 對象來調用控制器。

在 AngularJS 中, $scope 是一個應用象(屬於應用變數和函數)。

控制器的 $scope (相當於範圍、控制範圍)用來儲存AngularJS Model(模型)的對象。

控制器在範圍中建立了兩個屬性 (firstName 和 lastName)。

ng-model 指令綁定輸入欄位到控制器的屬性(firstName 和 lastName)。

控制器方法

上面的執行個體示範了一個帶有 lastName 和 firstName 這兩個屬性的控制器對象。

控制器也可以有方法(變數和函數):

AngularJS 執行個體

<!DOCTYPE html><html><head><meta charset="utf-8"><script src="http://apps.bdimg.com/libs/angular.js/1.4.6/angular.min.js"></script></head><body><div ng-app="myApp" ng-controller="personCtrl">名: <input type="text" ng-model="firstName"><br>姓: <input type="text" ng-model="lastName"><br><br>姓名: {{fullName()}}</div><script>var app = angular.module('myApp', []);app.controller('personCtrl', function($scope) {  $scope.firstName = "John";  $scope.lastName = "Doe";  $scope.fullName = function() {    return $scope.firstName + " " + $scope.lastName;  }});</script></body></html>

運行效果:

名: 
姓: 

姓名: John Doe

外部檔案中的控制器

在大型的應用程式中,通常是把控制器儲存在外部檔案中。

只需要把 <script> 標籤中的代碼複製到名為 personController.js 的外部檔案中即可:

AngularJS 執行個體

<!DOCTYPE html><html><head><meta charset="utf-8"><script src="http://apps.bdimg.com/libs/angular.js/1.4.6/angular.min.js"></script></head><body><div ng-app="myApp" ng-controller="personCtrl">名: <input type="text" ng-model="firstName"><br>姓: <input type="text" ng-model="lastName"><br><br>姓名: {{firstName + " " + lastName}}</div><script src="personController.js"></script></body></html>

運行結果:

名: 
姓: 

姓名: John Doe

其他執行個體

以下執行個體建立一個新的控制器檔案:

angular.module('myApp', []).controller('namesCtrl', function($scope) {  $scope.names = [    {name:'Jani',country:'Norway'},    {name:'Hege',country:'Sweden'},    {name:'Kai',country:'Denmark'}  ];});

儲存檔案為  namesController.js:

然後,在應用中使用控制器檔案:

AngularJS 執行個體

<!DOCTYPE html><html><head><meta charset="utf-8"><script src="http://apps.bdimg.com/libs/angular.js/1.4.6/angular.min.js"></script></head><body><div ng-app="myApp" ng-controller="namesCtrl"> <ul> <li ng-repeat="x in names">  {{ x.name + ', ' + x.country }} </li></ul></div><script src="namesController.js"></script></body></html>

運行效果:

  • Jani, Norway
  • Hege, Sweden
  • Kai, Denmark

以上就是對AngularJS 控制器資料的整理,後續繼續補充。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.