我试图确定为什么调用我的$scope.reset()
方法不能像我希望的那样工作。我想要完成的是:单击重置按钮后,values
对象将重新初始化,并且其theState
字段设置为'one'
. 这应该会导致显示 divid='one'
并隐藏它的 2 个兄弟。
单击重置时实际发生的情况是所有三个div
元素都被隐藏,直到我单击标记为一、二、三的按钮之一。我假设失败的原因ng-show
是绑定到的实际对象正在发生变化$scope.reset()
- 但我不知道如何让视图按照我的意愿做出反应。
HTML:
<div ng-controller="AppCtrl">
<input type="button" ng-click="values.theState='one'" value="One"/>
<input type="button" ng-click="values.theState='two'" value="Two"/>
<input type="button" ng-click="values.theState='three'" value="Three"/>
<div id="one" ng-show="values.theState=='one'">
This is div=1
</div>
<div id="two" ng-show="values.theState=='two'">
This is div=2
</div>
<div id="tre" ng-show="values.theState=='three'">
This is div=3
</div>
<input type="button" ng-click="reset()" value="Reset"/>
</div>
AngularJS:
<script>
var app = angular.module("app", []);
app.controller("AppCtrl", function($scope) {
$scope.values = {
theState: 'one'
};
$scope.reset = function() {
$scope.values = {};
$scope.value.theState = 'one';
}
});
</script>