我有CSV導入表模型:分組數據和分頁使用Rails
class ImportTable < ActiveRecord::Base
has_many :import_cells, :dependent => :destroy
end
class ImportCell < ActiveRecord::Base
belongs_to :import_table
end
控制器(編輯爲了簡潔):
def show
@import_table = ImportTable.find(params[:id])
@import_cells = @import_table.import_cells
@row_index_max = @import_cells.map { |cell| cell.row_index }.max
@column_index_max = @import_cells.map { |cell| cell.column_index }.max
end
的import_cells具有row_index
和column_index
,I組他們按視圖中的列。
<table border="1" cellspacing="1" cellpadding="1">
<tr>
<% 0.upto(@column_index_max) do |column_index| %>
<th>
<%= f.select(column_index, []) %>
</th>
<% end %>
</tr>
<% 0.upto(@row_index_max) do |row_index| %>
<% row = @import_cells.select { |cell| cell.row_index == row_index } %>
<tr>
<% 0.upto(@column_index_max) do |column_index| %>
<td>
<%= row.select { |cell| cell.column_index == column_index }[0].contents %>
</td>
<% end %>
</tr>
<% end %>
</table>
我從另一個網站cribbed,這似乎有點janky對我來說。簡單地增加:
@import_cells = @import_table.import_cells.paginate(:all, :order => "row_index ASC", :per_page => @column_index_max * 16, :page => params[:page])
完全不是那麼回事一樣會有零有要處理的will_paginate
創建的對象。在我看來,這種觀點有太多的邏輯。這裏採取什麼好方法?我正在考慮添加一個row
方法來對ImportTable
模型本身的列進行分組,但根據特定表中有多少列,它必須靈活。然後行可以分頁。
任何想法,建議,並在「鐵路方式」方向輕度讚賞!