2011-03-24 48 views

回答

12

您可能想要each_with_index。是這樣的:

<% @records.each_with_index do |record, i| %> 
    <%= (i+1) %>. <%= record.foo %> <br /> 
<% end %> 
+0

謝謝!非常有幫助! – 2011-03-24 15:20:15

6

你可以使用each_with_index:

<% @records.each_with_index do |record, i| %> 

    #your code 

<% end %> 
+0

D'哦,43打秒! :) – 2011-03-24 15:18:08

+0

:)即使你很快! – 2011-03-24 15:18:47

+0

謝謝!IU幫助了我! – 2011-03-24 15:21:00

1

看看each_with_index:

<% @records.each_with_index do |record, index| %> 
+0

非常感謝你! – 2011-03-24 15:21:36

2

只是把它包在一個OL,這樣的編號是動態的:

<ol> 
    <% @records.each do |record| %> 
    <li><%= record %></li> 
    <% end %> 
</ol>