我有一个复选框,
<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中反映?)