角度ng重复元素计数

时间:2013-12-04 06:58:18

标签: angularjs

<li ng-repeat="Item in Items">
        <div ng-switch="($index)==0">
            <div ng-switch-when="true">
                <a href="#"><   Previous</a>
            </div>
            <div ng-switch-when="false">
                <a href="#">{{$index}}</a>
            </div>
        </div>
    </li>

我想获取Items的元素数,并希望显示“Next&gt;”最后一项

1 个答案:

答案 0 :(得分:12)

像这样的东西

<li ng-repeat="Item in Items">
                <a ng-if="$first" href="#"><   Previous</a>
                <a ng-if="!$first && !$last" href="#">{{$index}}</a>
                <a ng-if="$last" href="#">Next ></a>
    </li>

要获取长度Items.length。如果有过滤器,它会变得更复杂。见SO post