使用 Rails 3。我正在使用each_with_index
生成序列:
<% @shops.each_with_index do |shop, i| %>
<div class="item map-marker" id="shop_<%= i+1 %>">
我尝试使用div_for
,但它shop.id
取而代之。有没有更好的方法来做到这一点?
谢谢。
使用 Rails 3。我正在使用each_with_index
生成序列:
<% @shops.each_with_index do |shop, i| %>
<div class="item map-marker" id="shop_<%= i+1 %>">
我尝试使用div_for
,但它shop.id
取而代之。有没有更好的方法来做到这一点?
谢谢。