有没有办法在ng-repeat中使用1代替0作为初始项目的$ index?我不是要过滤掉数组中的第一项。对于paypal,他们希望第一个是item_num_1 ...使用0不起作用 如在
<div ng-repeat = "item in items">
<input type ="hidden" name ="item_num_{{$index}}" value ="item_num_{{item.id}}">
//the rest like this
</div>
答案 0 :(得分:7)
也许你可以试试这个。我不确定它是否有效。祝你好运
<div ng-repeat = "item in items track by $index">
<input type ="hidden" name ="item_num_{{$index + 1}}" value ="item_num_{{item.id}}">
//the rest like this
</div>
答案 1 :(得分:5)
为什么不做
{{$index+1}}