我能够将选中的值与其他值一起插入Db。这里我尝试显示来自DB的获取值。问题是,我想要选中所选值的复选框并显示其他值我不能这样做。任何人都可以帮我如何做到这一点。我附上了一个关于我当前屏幕的样子。
HTML:
<body ng-controller="MainCtrl">
<table>
<tr ng-repeat="field in fields" name="slotSelection">
<td align="center">
<input type="checkbox" ng-model="field.checked">{{field.name}}
</td>
<td>
<select ng-model="time" ng-options="time for time in field.timeslots">
<option value="">select</option>
</select>
</td>
<td>
<input type="text" ng-model="interval" ng-blur="setTimeSlots(interval, field)">
</td>
</tr>
</table>
</body>
答案 0 :(得分:0)
使用Angular JS的ngChecked选项
log
如果表达式是真实的,那么将在元素上设置checked属性
<input type="checkbox" ng-checked="*expression*">