ng-repeatでチェックボックスを生成しようとしています。ドロップダウンから値を選択した後、選択した値に基づいて値を取得しています。他のチェックボックスを選択することができません。いずれかのチェックボックスを選択する方法や、ng-modelに基づいてその値をバインドできるように複数のチェックボックスを選択する方法を教えてください。ここでng-repeatからチェックボックスを動的に生成する
htmlコード
<div class="form-group" data-ng-repeat="collegesByType in
collegesByTypes">
<div class="be-checkbox">
<input data-ng-model="committee.collegeId" name="collegeId"
type="hidden"
value="0">
<input data-to-date="currently_todate386"
id="currently_checkbox386" class="currently" type="checkbox"
value="1">
<label for="currently_checkbox386">{{collegesByType.name}}</label>
</div>
</div>
あなたは、各チェックボックスのための別のモデルを定義する必要があります。それでは、この 'data-ng-model =" collegesByType .committee.collegeId "" –