如何只显示第一个角元素?
我正在这样使用ng-repeat:
ng-repeat
<div ng-repeat="product in products" ng-show="$first"> <div>{{ product.price }}</div> </div>
但是由于我没有重复,所以我不必使用ng-repeat吗?我如何才能只显示第一个,而不必进行ng-repeat?
不要使用ng-repeat指令,这应该可以工作:
<div>{{ products[0].price }}</div>