欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

AngularJS 作用域详解及示例代码

程序员文章站 2023-11-09 15:20:40
范围扮演其视图连接控制器的角色一个特殊的javascript对象。范围包含了模型数据。在控制器,模型数据通过$scope对象访问。

范围扮演其视图连接控制器的角色一个特殊的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 作用域详解及示例代码

以上就是对angularjs 作用域的资料整理,后续继续补充相关资料,谢谢大家对本站的支持!