如何在 AngularJS 中遍历模型数据



我有一个下拉列表,其中包含如下支持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 值的同级名称值?

如果我

正确理解了您的问题,则需要使用 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/

<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 在应用于当前 Tradestyle 模型属性之前实际成为选定的 tradestyle 项。

有一个对下划线的依赖,但你可以用一个更长的替代 findWhere() 方法来删除它。

http://jsfiddle.net/asperry1/Zfecq/6/

我相信

你正在寻找的是这样的东西:

<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>

工作小提琴:

相关内容

  • 没有找到相关文章

最新更新