私のページには、次のような 2 つの ui-select があります。
問題は、最初の選択の値を変更すると、2 番目の選択も変更されることです。
これは私が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>
{{コンポーネント名}}
情報を繰り返さずに表示してください。それを回避する方法はありますか?
何か案は?ありがとう!