如何将来自webservice的数据绑定到html中的复选框

时间:2014-01-28 15:36:05

标签: html html5 angularjs

我在UI端有一个复选框,我希望以jason的形式绑定来自Web服务的数据

Html代码:

<label class="checkbox-inline nopaddingleft" for="radio1">
      <input name="radio1" type="checkbox" id="radio1"  
           class="checkbox-inline margin-right-five" 
           value="name" checked={{insuredProfile.isScrubbed}} />Scrub
</label> 

我要绑定的值是:{{insuredProfile.isScrubbed}}它将是真还是假

提前致谢

2 个答案:

答案 0 :(得分:0)

在您的视图中使用ngChecked

controller中,你需要有类似的内容:

$scope.insuredProfile = { isScrubbed: true };

答案 1 :(得分:0)

您必须使用 ng-model 作为复选框输入。  ng-model="insuredProfile.isScrubbed"