、あなたはそれが正しい順序ごとの増分のための0と1で始まるシーケンス/シリアルnumber.Asを取得するために$index
を使用することができます。
<li> & <ol>
とは異なり、この技術を任意のHTMLタグで使用してシリアル番号を生成することができます。順序付きリスト項目の内部
function exampleController($scope) {
$scope.phones = [{
model: 'iphone'
}, {
model: 'iPad 2'
}, {
model: 'Samsung Galaxy'
}];
}
angular
.module('example', [])
.controller('exampleController', exampleController);
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular.min.js"></script>
<div class="container-fluid" ng-app="example">
<div class="container" ng-controller="exampleController">
<div class="row">
<p ng-repeat="phone in phones track by $index" >{{$index+1}}.{{phone.model}}</p>
</div>
</div>
</div>
ン・リピートが、それは – Carafini
あなたがコード例を提供してくださいできたらいいですか? – singh
– Carafini