我有一个基本的ui-select组件,以及为ui-select选择另一个列表的情况。
我如何更改此处" somelist
"进入" anotherlist
"当点击按钮或通过其他函数调用时)?
<ui-select ng-model="obj.selected">
<ui-select-match>{{$select.selected.dsc}}</ui-select-match>
<ui-select-choices repeat=" X in somelist | propsFilter: {dsc: $select.search}">
<div ng-bind-html="X.dsc | highlight: $select.search" position='down'></div>
</ui-select-choices>
</ui-select>
<button>Change list</button>
答案 0 :(得分:0)
我得到了这个解决方案;
我想当somelist
获得undefined
然后再次填充时,ui选择刷新。所以这对我有用:
somelist = undefined;
somelist = anotherlist;