数组中的角度更新对象

时间:2014-11-04 17:18:48

标签: angularjs

我想更新对象数组中的对象。是否有另一种可能性,而不是迭代所有项目并更新匹配的项目?当前代码如下所示:

angular.module('app').controller('MyController', function($scope) {
    $scope.object = {
        name: 'test',
        objects: [
            {id: 1, name: 'test1'},
            {id: 2, name: 'test2'}
        ]
    };

    $scope.update = function(id, data) {
        var objects = $scope.object.objects;

        for (var i = 0; i < objects.length; i++) {
            if (objects[i].id === id) {
                objects[i] = data;
                break;
            }
        }
    }
});

4 个答案:

答案 0 :(得分:7)

有几种方法可以做到这一点。你的情况不太清楚。

- &GT;您可以传递索引而不是id。然后,您的更新功能将如下:

$scope.update = function(index, data) {
    $scope.object.objects[index] = data;
};

- &GT;您可以在视图上使用ng-repeat并将对象属性绑定到输入元素。

<div ng-repeat="item in object.objects">
    ID: <input ng-model="item.id" /> <br/>
    Name: <input ng-model="item.name" /> <br/>
</div>

答案 1 :(得分:7)

有助于从数组中查找元素的过滤器也可用于直接更新数组中的元素。 在下面的代码中[0] - &gt;是直接访问的对象。

Plunker Demo

$filter('filter')($scope.model, {firstName: selected})[0]

答案 2 :(得分:6)

将项目传递给更新方法。看看下面的样品。

function MyCtrl($scope) {
  $scope.items = 
    [
      {name: 'obj1', info: {text: 'some extra info for obj1', show: true}},
      {name: 'obj2', info: {text: 'some extra info for obj2', show: false}},
    ];
  $scope.updateName = function(item, newName){
     item.name = newName;
  } 
}
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" rel="stylesheet"/>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular.min.js"></script>

<body ng-app>
  <table ng-controller="MyCtrl" class="table table-hover table-striped">
    <tr ng-repeat="x in items">
        <td> {{ x.name }}</td>
        <td> 
           <a href="#" ng-show="!showUpdate" ng-click="someNewName = x.name; showUpdate = true">Update</a>
           <div ng-show="showUpdate" ><input type="text" ng-model="someNewName"> <input type="button" value="update" ng-click="updateName(x, someNewName); showUpdate = false;"></div>
         </td>
    </tr>

  </table>
</body>

答案 3 :(得分:2)

脱掉你的傻瓜,我会这样做:

  • 更改

    <a href="javascript:;" ng-click="selectSubObject(subObject.id)">Edit</a>
    

    <a href="javascript:;" ng-click="selectSubObject($index)">Edit</a>
    
  • 然后使用$scope.selectSubObject方法中的数组索引直接访问所需的元素。像这样:

    $scope.selectSubObject = function(idx) {
      $scope.selectedSubObject = angular.copy(
        $scope.selectedMainObject.subObjects[idx]
      );
    };
    

但是,如果您只有id,则可以使用angular filterService过滤所需的id。但是这仍然会循环并在后台迭代数组。

请参阅ngrepeat文档,了解它所公开的变量。