选中并取消选中复选框

时间:2014-09-09 12:52:14

标签: angularjs checkbox

我有一个复选框,

        <div class="large-12 eachRow" ng-repeat="role in bindRoles">
            <input type="checkbox" ng-checked="{{role.View}}"/>
        </div>

它正确绑定值,如&#34; bindRoles&#34;

我如何执行双向绑定? (例如,最初的值&#34; role.View&#34;如果为true,如果我取消选中,我怎么能让它在bindRoles Json中反映?)

1 个答案:

答案 0 :(得分:1)

您需要使用ngModel

<input type="checkbox" ng-model="role.View" />