带有ng-repeat的Bootstrap选择器对JSON对象不起作用

时间:2016-10-07 12:26:00

标签: angularjs twitter-bootstrap angularjs-scope angular-ui-bootstrap

我正在使用Bootstrap select进行搜索和多次选择,但问题是当我在ng-repeat中使用$ scope对象时它没有工作的选项。我在下面给出了我的代码。

<select name="name" ng-model="city.id" class="selectpicker" data-live-search="true" ng-options="o._id as o.name for o in stateList" ></select>

<select name="name" ng-model="city.id" class="selectpicker" data-live-search="true" ><option ng-repeat="option in stateList" value="{[{option._id}]}">{[{option.name}]}</option>

我已经使用了两个选项和ng-option方法,但仍然没有显示对象...

这是我的状态对象,需要在select ...

中重复

$ scope.stateList = [{&#34; _id&#34;:&#34; 1&#34;,&#34; name&#34;:&#34; www&#34;},{&# 34; _id&#34;:&#34; 2&#34;&#34;名称&#34;:&#34; BGG&#34;}]

希望您了解我的问题以及是否需要更多详细信息 请发表评论,我等待你的建议...

1 个答案:

答案 0 :(得分:0)

我也有问题,但使用nya-bootstrap-select http://nya.io/nya-bootstrap-select/#!/

修好了。它与bootstrap select的jQuery的使用有关,它并不总是与角度很好...这是用Angular编写的,用于Angular,所以它更兼容......