Bootstrap Multiselect Dropdown http://davidstutz.github.io/bootstrap-multiselect/を使用し、AngularJS のサブテンプレートに埋め込み、次の関数で実行させました。
$scope.$on('$viewContentLoaded', function () {
$(document).ready(function() {
$('#example27').multiselect({
includeSelectAllOption: true
});
});
});
ng-repeat を使用して、この入力選択の内部オプションを出力し続けました。
<select id="example27" multiple="multiple">
<option ng-repeat="list in lists" value="{{list.id}}">{{list.name}}</option>
</select>
しかし、ng-repeat がこの入力選択にある場合、機能せず、データを出力しませんでした。誰でもこの問題を解決する方法を知っています、私を助けてください!!