我有一个支持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>
在它旁边,我想放置一个文本字段,其中显示所选的tradestyle的名称和 可以编辑。
<input type="text" ng-model="currentTradestyle" />
如何更改后者的模型以指向所选的贸易风格的名称而不是ID?换句话说,如何遍历范围对象以指向所选ID值的兄弟名称值?
答案 0 :(得分:2)
如果我已正确理解您的问题,您需要使用ng-options
来绑定对象而不是字段。所以它变成
<select id="tradestyle" ui-select2 ng-model="currentTradestyle" ng-options="style.name for style in tradestyles">
</select>
<input type="text" ng-model="currentTradestyle.id" />
<input type="text" ng-model="currentTradestyle.name" />
在这里看我的小提琴 http://jsfiddle.net/cmyworld/UsfF6/
答案 1 :(得分:2)
<div ng-app="myApp">
<div ng-controller='Ctrl'>
<select id="tradestyle" ng-model="currentTradestyle" update-model="tradestyles">
<option ng-repeat="style in tradestyles" value="{{style.id}}">{{style.name}}</option>
</select>
<input type="text" ng-model="currentTradestyle.name" />
</div>
</div>
JavaScript的:
var app = angular.module('myApp', []);
app.controller('Ctrl', ['$scope', '$rootScope', function ($scope, $rootScope) {
$scope.tradestyles = [{
"id": "1",
"source": "Source One",
"name": "Name One"
}, {
"id": "2",
"source": "Source Two",
"name": "Name Two"
}];
}]);
app.directive('updateModel', function() {
return {
require: '?ngModel',
restrict: 'A',
link: function(scope, element, attrs, modelCtrl) {
function parser(value) {
if(value) {
return _.findWhere(scope[attrs.updateModel], {id: value});
}
}
modelCtrl.$parsers.push(parser);
},
}
});
这可能会满足您在评论中提出的问题。它在<option>
中使用tradestyle.id而不是$ index,这意味着所选项目适用于过滤器应用于集合的情况。额外的$ parser确保tradestyle.id在应用于currentTradestyle模型属性之前实际上成为选定的tradestyle项目。
这是对Underscore的依赖,但您可以使用更长的替代方法来替换该方法。
答案 2 :(得分:1)
我相信你要找的是这样的:
<div ng-app="myApp">
<div ng-controller='Ctrl'>
<select id="tradestyle" ui-select2 ng-model="currentTsIndex">
<option ng-repeat="tradestyle in tradestyles" value="{{$index}}">{{tradestyle.name}}</option>
</select>
<input type="text" ng-model="tradestyles[currentTsIndex].name" />
</div>
</div>
工作fiddle: