Bootjrap选择选择器,angularjs ng-repeat不起作用

时间:2017-07-24 07:42:50

标签: angularjs node.js bootstrap-selectpicker

我需要为我的表单进行多选,我使用引导选择选择器,但我的选择选项数据是从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>

1 个答案:

答案 0 :(得分:0)

我想,删除select-Multiple会修复它。

NumberFormatter