我有一个模板,我只想在当前项目与前一项目有不同的字段时生成一些HTML。如何访问ng-repeat中的上一项?
答案 0 :(得分:97)
您可以执行类似
的操作<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'
}]
})
演示:Fiddle
注意: $index
用于指令数组,可能与作用域数组不同。使用内联变量来访问正确的数组。
<li ng-repeat="content in (correctContents = (contents | orderBy:'id'))">
{{ correctContents[$index - 1] }} is the prev element
</li>
如果您过滤或订购,contents[$index] != content
。
答案 1 :(得分:12)
一种方法是使用$ 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'}
];
}
]
);
答案 2 :(得分:6)
为什么不使用key
中的ng-repeat
? ($index
与key
相比,<div ng-repeat="(key, item) in data">
<p>My previous item is {{ data[key-1] }}, my actual item is {{ item }}
</div>
似乎很棘手
events
答案 3 :(得分:0)
<li ng-repeat="item in items">
{{items[$index - 1].att == item.att ? 'current same as previous' : 'current not same as previous'}}
</li>