我想显示第一个数组对象的元素:hotels [{code,namehotel,sizehotel}]没有第二个数组对象中存在的元素:usersHotels [{code,id}]使用ui-中的过滤器选择:
这是我的代码:
<ui-select autofocus ng-model="nameHotelSelected" theme="select2" ng-change="changedValue(this)" align="center" style="width: 500px">
<ui-select-match placeholder="link this contact to ...">{{text}}</ui-select-match>
<ui-select-choices repeat="user in usersHotel ">
<ui-select-choices repeat="nameHotel in hotels | filter: nameHotel.code:'user.code'">
<span ng-bind="nameHotel.name"></span>
</ui-select-choices>
这样做是对的吗?如果不是怎么做?