2

我在 ng-repeat 中使用 ui-select 为集合中的每个项目创建一个选择框。但是,当我在任何单个选择框中选择一个节点 ID 时,它最终会在所有选择框中被选中。如何配置{{$select.selected.id}}部件以便仅更新当前选择选择框?以下是相关代码:

<div style="float:left; width:160px;" ng-repeat="choice in choices">
<div class="input-group">
    <ui-select ng-model="node.selected" theme="bootstrap" ng-disabled="disabled" reset-csearch-input="true" style="width:50px; float:left">
        <ui-select-match placeholder="{{choice.to_node_id}}">{{$select.selected.id}}</ui-select-match>
        <ui-select-choices repeat="node in nodes | filter: $select.search">
            <div ng-bind-html="node.id | highlight: $select.search" ng-click="updateChoiceLink(choice, node)"></div>
        </ui-select-choices>
    </ui-select>
</div>
4

1 回答 1

5

我能够通过将模型绑定到choice.selected而不是node.selected. 这样,每个选择框都有一个基于选择的唯一 ng-model。

于 2015-03-04T03:05:27.153 回答