我正在使用引導,並想通過數組ng-repeat,但我需要得到每個循環的2個值。例如,我希望b.name預訂[0],另一個b.name預訂[1]。我目前正在添加每一行然後添加值。吳重複與陣列中的每個重複的兩個值
<div class="row" ng-repeat="b in booking">
<div class="col-sm-6">
<label><input icheck type="checkbox" ng-model="basicIntake.email_subscription">
{{b.name}}
</label>
</div>
<div class="col-sm-6">
<label><input icheck type="checkbox" ng-model="basicIntake.email_subscription">
{{b.name}}
</label>
</div>
</div>
你想要偶數和奇數索引差異嗎? – valbrux
如果是每次創建一行有2個col-sm-6的行時,只需使用一行並循環顯示col-sm-6就可以了 – Groben