AngularJS 範圍詳解及範例程式碼_AngularJS

來源:互聯網
上載者:User

範圍扮演其視圖連接導向器的角色一個特殊的JavaScript對象。範圍包含了模型資料。在控制器,模型資料通過$scope對象訪問。

<script>   var mainApp = angular.module("mainApp", []);   mainApp.controller("shapeController", function($scope) {     $scope.message = "In shape controller";     $scope.type = "Shape";   });</script>

以下是在上面的例子中需要考慮的重要問題。

$scope被作為第一個參數在其構造器確定指標到控制器。

$scope.message 和 $scope.type 是它們在HTML頁面中所用的模型。

我們已經設定模型的值將反映應用程式模組的控制器shapeController中。

我們可以在$scope定義函數功能。

繼承範圍

範圍是特定的控制器。如果我們定義嵌套的控制器,然後控制器子將繼承其父控制的範圍。

<script>   var mainApp = angular.module("mainApp", []);   mainApp.controller("shapeController", function($scope) {     $scope.message = "In shape controller";     $scope.type = "Shape";   });    mainApp.controller("circleController", function($scope) {     $scope.message = "In circle controller";     });</script>

以下是在上面的例子中需要考慮的重要問題。

我們在shapeController設定模型的值。

我們覆蓋的子控制器circleController訊息。當“訊息”內的控制器circleController的模組使用時,將用於重寫的訊息。

例子

下面的例子將展示上述所有指令。

testAngularJS.html

<html><head>  <title>Angular JS Forms</title></head><body>  <h2>AngularJS Sample Application</h2>  <div ng-app="mainApp" ng-controller="shapeController">   <p>{{message}} <br/> {{type}} </p>   <div ng-controller="circleController">     <p>{{message}} <br/> {{type}} </p>   </div>   <div ng-controller="squareController">     <p>{{message}} <br/> {{type}} </p>   </div>  </div>  <script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.2.15/angular.min.js"></script>  <script>   var mainApp = angular.module("mainApp", []);   mainApp.controller("shapeController", function($scope) {     $scope.message = "In shape controller";     $scope.type = "Shape";   });   mainApp.controller("circleController", function($scope) {     $scope.message = "In circle controller";     });   mainApp.controller("squareController", function($scope) {     $scope.message = "In square controller";     $scope.type = "Square";   });  </script></body></html>

結果

在Web瀏覽器開啟textAngularJS.html。看到結果如下。

以上就是對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.