web-dev-qa-db-ja.com

ng-repeatで前のアイテムを取得する方法は?

現在のアイテムに前のアイテムとは異なるフィールドがある場合にのみHTMLを生成するテンプレートがあります。 ng-repeatで前のアイテムにアクセスするにはどうすればよいですか?

46
jgm

次のようなことができます

<div ng-app="test-app" ng-controller="MyController">
    <ul id="contents">
      <li ng-repeat="content in contents">
          <div class="title">{{$index}} - {{content.title}} - {{contents[$index - 1]}}</div>
      </li>
    </ul>
</div>

JS

var app = angular.module('test-app', []);

app.controller('MyController', function($scope){
    $scope.contents=[{
        title: 'First'
    }, {
        title: 'Second'
    }, {
        title: 'Third'
    }]
})

デモ: フィドル


注意してください:$indexはディレクティブ配列用で、スコープ配列とは異なる場合があります。インライン変数を使用して、正しい配列にアクセスします。

<li ng-repeat="content in (correctContents = (contents | orderBy:'id'))">
  {{ correctContents[$index - 1] }} is the prev element
</li>

フィルタまたはorderByする場合、contents[$index] != content

97
Arun P Johny

1つの方法は、前のアイテムをターゲットにするために$ indexを使用することです:

HTML:

<div ng-repeat="item in items">
  <span>{{$index}}: </span>
  <span ng-show="items[$index-1].name=='Misko'" ng-bind="item.name"></span>
</div>

JS:

app.controller('AppController',
    [
      '$scope',
      function($scope) {
        $scope.items = [
          {name: 'Misko'},
          {name: 'Igor'},
          {name: 'Vojta'}
        ];

      }
    ]
  );

Plunker

12
Stewie

ng-repeatkeyを使用しないのはなぜですか? ($indexkeyと比較して扱いにくいようです)

<div ng-repeat="(key, item) in data">
  <p>My previous item is {{ data[key-1] }}, my actual item is {{ item }}
</div>
6
mpgn
<li ng-repeat="item in items">
    {{items[$index - 1].att == item.att ? 'current same as previous' : 'current not same as previous'}}
</li>
0
Ahmed