报告.rb
def archive
Record.where('archive_id < ?', self.id)
end
报告/show.html.haml
%table
%thead
%th Record ID
%th Description
%tbody
- @archives.each do |archive|
%tr
%td= archive.id
%td= archive.description
我的报告模型中定义了一个归档方法。在报告显示视图中,我想遍历结果集。我该怎么做呢?