我有一个带有支持 JSON 的下拉列表,如下所示:
$scope.tradestyles = [
{"id":"1","source":"Source One","name":"Name One"},
{"id":"2","source":"Source Two","name":"Name Two"}
]
这是下拉列表,使用select2
,模型是所选贸易风格的 ID:
<select id="tradestyle" ui-select2 ng-model="currentTradestyle" >
<option ng-repeat="tradestyle in tradestyles" value="{{tradestyle.id}}">
{{tradestyle.name}}
</option>
</select>
在它旁边,我想放置一个文本字段,其中显示了所选交易风格的名称并且可以进行编辑。
<input type="text" ng-model="currentTradestyle" />
如何将后者的模型更改为指向所选贸易风格的名称而不是 ID?换句话说,如何遍历作用域对象指向所选ID值的兄弟名称值?