AngularJS - 范围



范围是一个特殊的 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 的子控制器中覆盖了 message。当在名为 circleController 的控制器的模块中使用 message 时,将使用覆盖的 message。

示例

以下示例显示了所有上述指令的使用。

testAngularJS.htm

<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 = "https://ajax.googleapis.com/ajax/libs/angularjs/1.3.14/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 浏览器中打开 testAngularJS.htm 文件,查看结果。

广告