显示多行记录?

时间:2012-11-22 04:27:51

标签: ruby-on-rails

我想在多行中显示我的记录。

例如:我有10条记录,我希望将这些记录显示为一行中的3条记录,另一行中的其他3条记录,依此类推。

4 个答案:

答案 0 :(得分:0)

您可以使用html显示

 <tr> </tr>

答案 1 :(得分:0)

试试这样:

<table>
<% 
rowCount = 0
@recordsList = Modal.find(:all)
   @recordsList.each do |rec|

      #this will use to make new row.
      if rowCount%3==0
%>
      <tr>
<%    end %>
         <!-- add your records here -->
         <td><%= rec.recordfield %></td>
<%
      rowCount = rowCount + 1

      end
   end
%>
</table>

答案 2 :(得分:0)

试试这个,为你的解决方案

使用in-groups-of

例如

<table>
  <% @tasks.in_groups_of(4, false) do |row_tasks| %>
    <tr>
      <% for task in row_tasks %>
        <td><%= task.name %></td>
      <% end %>
    </tr>
  <% end %>
</table>

来源

  1. http://railscasts.com/episodes/28-in-groups-of
  2. http://apidock.com/rails/Array/in_groups_of

答案 3 :(得分:0)

假设你有@articles有10篇文章 那么类似

<div class="articles">
 <% @articles.each_with_index do |article, article_index|%>
    <div class="article" style="float:left">
      <%=article.name%>
    </div>
    <% if (article_index+1) % 3 == 0%>
    <br/> <!-- Or write a div and clear it -->
    <% end %>
 <% end %>
</div>