如何切换md-switch为布尔字符串

时间:2017-06-02 03:31:55

标签: angularjs angular-material

我的数据集有一个值布尔字符串。到目前为止,我知道我们不能用字符串值切换md-switch。如何使用这个布尔字符串切换我的md-switch?

我的对象的价值如下。

{
  code:'1',
  name: 'Name',
  active : 'true'
}

在我的ng-repeat中,我使用了这个md-switch。

 <md-switch ng-model="group.active"  ng-change='vm.toggleActivesServiceGroup(group)'>
</md-switch>

如何在活动时切换此值?

1 个答案:

答案 0 :(得分:0)

我发现这是使用ng-true-value="'true'"来修改md-switch。

<md-switch ng-model="group.active" ng-true-value="'true'" ng-change='vm.toggleActivesServiceGroup(group)'>
</md-switch>

希望这有助于解决一些问题。