我有 2 个 Div
<div ng-controller="controller1">
<div ng-controller="controller2" class="{{changesindividually}}">
</div>
</div>
在controller1里面有
$scope.changesindividually = 'one column wide'
在controller2里面有
$scope.changesindividually = 'two column wide'
问题: 以这种方式更改父类是可能的,但是:在做之后:
$scope.changesindividually = 'two column wide'
从子控制器中,{{changesindividually}} 更改为“第二列宽”,而不是提供的“两列宽”。 就我而言,这是有问题的,因为由于 css 逻辑,需要这种类的顺序。
有什么办法可以防止这种情况发生吗?