本文介绍了Rails 获取“每个"的索引环形的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
所以我有这个循环:
<% @images.each do |page| %>
<% end %>
如何获取循环内页面"的索引?
How would I get the index of "page" inside of the loop?
推荐答案
<% @images.each_with_index do |page, index| %>
<% end %>
这篇关于Rails 获取“每个"的索引环形的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!