我有一个包含多个控制器的页面,其中一个控制器正在同一页面的2个不同的div中使用。我不确定它是否是范围问题,或者我只是错过了我的代码中的内容。
这里是plunkr http://plnkr.co/edit/IowesXE3ag6xOYfB6KrN?p=preview
我想在用户点击“优惠”链接时隐藏文本框,在点击“费用”链接时显示该框。
答案 0 :(得分:16)
相同的控制器,但声明了两次。因此 - 两个范围 通常,解决方案是将ng-controller声明移动一个dom级别(在您的情况下,移动到body元素。一次),并且只有一次。否则,请研究角度服务。
请参阅更新的plunkr:http://plnkr.co/edit/pWnx2mdMeOeH33LUeTGm?p=preview
答案 1 :(得分:10)
每次使用ng-controller时,都会使用自己的范围创建所述控制器的新实例。如果你在body标签(或一个新的父级)上设置subCCtrl,并从当前打开的两个div中删除它,它对我有用。
您可能希望查看的其他解决方案是将“hideThisBox”保留在根作用域上,在单击“保存”时保存或通过将其保留在服务中来广播事件。
答案 2 :(得分:3)
您需要在控制器和视图中进行一些更改。
var app = angular.module('plunker', []);
app.controller('subCCtrl', function($scope) {
$scope.hideThisBox = false;
$scope.update = function(label) {
if (label == 'Cost')
$scope.displaybox = true;
else
$scope.displaybox = false;
}
});
app.controller('subACtrl', function($scope) {
});
app.controller('subBCtrl', function($scope) {
});
HTML:
<!DOCTYPE html>
<html ng-app="plunker">
<head>
<meta charset="utf-8" />
<title>AngularJS Plunker</title>
<script>document.write('<base href="' + document.location + '" />');</script>
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" />
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
<script data-require="angular.js@1.0.x" src="https://ajax.googleapis.com/ajax/libs/angularjs/1.0.8/angular.min.js" data-semver="1.0.8"></script>
<script src="app.js"></script>
</head>
<body>
<div ng-controller="subCCtrl" class="row-fluid">
<div class="span6">
<a href="#" ng-click='update("Cost");displaybox=true;'>Cost</a>
<br />
<a href="#" ng-click='update("Savings");displaybox=fasle;'>Savings</a>
<br />
</div>
<hr />
<div ng-controller="subACtrl">Do stuff that uses subACtrl</div>
<div ng-controller="subBCtrl">Do stuff that uses subBCtrl</div>
<hr />
<div ng-controller="subCCtrl" class="row-fluid">
<div class="span3">
<label>If click on 'Savings', hide below box: </label>
</div>
<div ng-hide="hideThisBox" class="span6">
<input type="text" ng-model="test2" ng-show="displaybox"/>
</div>
</div>
</div>
</body>
</html>
答案 3 :(得分:0)
我建议您阅读Javascript范围。您的代码的问题是ng-controllers
的范围。
答案 4 :(得分:0)
我猜你已经得到了答案,但对于那些将来到这里的人是一些提示^^(希望它会是肝脏):
ng-controller="myCtrl"
将设置“myCtrl”控制器的新实例,我自己的范围
使用范围将是firt div的控制器之一,这意味着如果你有类似的东西:
<div id="maindiv" ng-controller="myCtrl> <div id="subdiv1"> <div></div> <div> <div>some text</div> </div> </div> <div id="subdiv2" ng-controller="myCtrl"> <div> <span>-</span> <span>so</span> <span>this</span> <span>is</span> <span>a</span> <span>subdiv</span> <span>.</span> </div> </div> </div> </div>
这只是一些简单的提示,你会在SO或google上找到更多有用的提示,但无论如何,如果它可以帮助你们中的一些人会很酷。