Rails获取“每个”循环的索引
所以我有这个循环:
<% @images.each do |page| %> <% end %>
我如何获得循环内的“页面”的索引?
<% @images.each_with_index do |page, index| %> <% end %>
这两个答案是好的。 我也build议你使用类似的方法:
<% @images.each.with_index do |page, index| %> <% end %>
你可能没有看到这个和被接受的答案之间的区别。 让我直接看看这些方法调用: .each.with_index
看看它是如何。然后.with_index
。
试试each_with_index 。