使用Rails 3.2和Ruby 1.9。當我們編碼@objects.each_with_index do |object, i|
時,i
通常以0
,1
,2
開頭。等Rails each_with_index在索引中下降順序
比方說,我們有@objects = [A, B, C, D, E]
,輸出是:
<% @objects.each_with_index do |object, i| %>
<%= i %> - <%= object %><br>
<% end %>
# output
0 - A
1 - B
2 - C
我想有這個代替:
# output
2 - A
1 - B
0 - C
如何做到這一點?