現在のアイテムに前のアイテムとは異なるフィールドがある場合にのみHTMLを生成するテンプレートがあります。 ng-repeatで前のアイテムにアクセスするにはどうすればよいですか?
次のようなことができます
<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
。
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'}
];
}
]
);
ng-repeat
のkey
を使用しないのはなぜですか? ($index
はkey
と比較して扱いにくいようです)
<div ng-repeat="(key, item) in data">
<p>My previous item is {{ data[key-1] }}, my actual item is {{ item }}
</div>
<li ng-repeat="item in items">
{{items[$index - 1].att == item.att ? 'current same as previous' : 'current not same as previous'}}
</li>