标签: ruby-on-rails ruby-on-rails-3
使用Rails 3.我使用each_with_index生成序列:
each_with_index
<% @shops.each_with_index do |shop, i| %> <div class="item map-marker" id="shop_<%= i+1 %>">
我尝试使用div_for,但需要使用shop.id。有没有更好的方法呢?
div_for
shop.id
感谢。