我有一个screen.in,我有一个切换按钮。并从数据库值1 0r 2来。如果1我必须快速切换按钮,否则我必须关闭电源。

我怎样才能做到这一点 :

我的代码:

<label class="item item-input " style="height: 50px;"><span class="input-label"><font style="color:#696969; padding-top: 0px;">Claim</font></span>
                    <ion-toggle toggle-class="toggle-calm" class="tog" ng-model="data.toggle"></ion-toggle>
      </label>


我尝试过的控制器:

$scope.data = {}
 var toggle_value;
  var toggleStatus = $scope.data.toggle
if ($scope.singleDetail.ExpClaimReimb == 1) {

toggleStatus == true;


}
else {

  toggleStatus == false;

}


来自db的值只会在这里出现:

$scope.singleDetail.ExpClaimReimb

请帮帮我。我怎样才能做到这一点 ??

谢谢。

最佳答案

看起来您可能正在使用相等检查(==),应该在其中使用赋值(=)。



toggleStatus = true; //this, instead of
toggleStatus == true;

07-28 06:46