AngularJS scope的一个特性:刷新子scope的时候,也会刷新父scope;反之亦然

前端之家收集整理的这篇文章主要介绍了AngularJS scope的一个特性:刷新子scope的时候,也会刷新父scope;反之亦然前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

最近在开发项目的时候,发现了AngularJS一个很好玩的特性。我们知道AngularJS的scope存在父子关系,当我们通过scope.$apply()手动刷新子作用域的时候,父作用域也会被刷新;反过来也是如此。

<!doctype html>
<html lang="en" ng-app>
	<head>
	   <Meta charset="utf-8">
	   <title>ng-model</title>
	   <script src="angular-1.2.25.js"></script>
	   <script>
			var outerScope = null;
			var innerScope = null;
			function outerController($scope)
			{
				outerScope = $scope;
				outerScope.out = "out";		
			}
			
			function innerController($scope)
			{
				innerScope = $scope;
				innerScope.in = "in";		
			}
			
			function outerFunc()
			{
				innerScope.in = "parent";
				outerScope.out = "parent";
				// 刷新父scope
				outerScope.$apply();
			}
			
			function innerFunc()
			{	
				innerScope.in = "child";
				outerScope.out = "child";
				// 刷新子scope
				innerScope.$apply();
			}
	   </script> 
	</head>
	
	<body ng-controller="outerController">
			{{out}}
		<button onclick="outerFunc();">outerFunc</button>
		
		<div ng-controller="innerController">
			{{in}}
			<button onclick="innerFunc();">innerFunc</button>
		</div>
	</body>
	
</html>
原文链接:https://www.f2er.com/angularjs/149496.html

猜你在找的Angularjs相关文章