内の任意のボックスを選択されていないチェックボックスのHTMLコードはデータベースから動的な値initiazationためではなく、チェックボックスのチェックボックスを使用していますです私のチェックボックスは、ここ* angularjs
<div class="widget-body" style="display: block;">
<div class="widget-main">
<div class="table-responsive">
<table class="table">
<thead>
<tr>
<th>item</th>
<th>received</th>
</tr>
</thead>
<tbody ng-repeat="emp in nodueaccountassets">
<tr>
<td>{{emp}}</td> <td> <input type="checkbox" ng-model="emp.selected" value="{{emp.name}}"/></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
とJS *任意の値を選択されていませんコントローラコードが
angular.forEach($scope.nodueaccountassets,function(emp){
if (emp.selected) $scope.albumNameArray.push(emp.name);
alert(emp.selected);
angular.forEachはどこで実行されますか?そのコンテキストを投稿してください... – Vi100