<table class="table table-bordered">
<tr ng-repeat="x in AppliedJob">
<td>{{x.JobName}}</td>
<td> <span class="dropdown" ng-repeat="y in AppliedCenter| unique: 'Location' " ng-if="y.JobName==x.JobName">
{{$index+1}}){{y.Location}}
</span> </td></tr> </table>
上記コードの出力
1) Tester : 1)India 2)USA 3)Australia
2) Developer : 4)Japan 5)China
必要な出力
1) Tester : 1)India 2)USA 3)Australia
2) Developer : 1)Japan 2)China
に設定$Index
したい1
。