在我的页面中有两个这样的 ui-select:
问题是,当更改第一个选择的值时,第二个也会更改!
这是我在 html 页面中的内容:
<div class="col-sm-10">
<div class="row">
<ul ng-repeat="component in components_selected"
<div class="col-xs-8 col-sm-6">
<strong><p>{{component.name}}</p></strong>
<ui-select ng-model="service.frequencies" theme="bootstrap"
on-select="assignFrequency($item,$model)">
<ui-select-match placeholder="Select a frequency">{{$select.selected.name}}</ui-select-match>
<ui-select-choices repeat="frequency in frequencies">
<small ng-bind-html="frequency.name"></small>
</ui-select-choices>
</ui-select>
</div>
</ul>
</div>
</div>
{{组件名称}}
在不重复信息的情况下很好地显示我。有办法避免吗?
有任何想法吗?谢谢!