我需要为我的表单进行多选,我使用引导选择选择器,但我的选择选项数据是从API动态加载的,我使用ng-repeat来显示select标签中的选项。但我的选择并没有显示任何选项。我可以知道我的代码有什么问题吗?
如果我使用默认的html5倍数选择它可以显示所有数据行。
<select class="form-control" ng-model="inputUserPermission" size="10" multiple required>
<option ng-repeat="salesPersonInSoaps in salesPersonInSoap" value="{{salesPersonInSoaps.FirstName}}">{{salesPersonInSoaps.email}}</option>
</select>
使用bootstrap select picker无效。
<select class="form-control selectpicker" ng-model="inputUserPermission" multiple required>
<option ng-repeat="salesPersonInSoaps in salesPersonInSoap" value="{{salesPersonInSoaps.FirstName}}">{{salesPersonInSoaps.email}}</option>
</select>
答案 0 :(得分:0)
我想,删除select-Multiple会修复它。
NumberFormatter