我在时间表和时间表之间有一个accepts_nested_attributes_for关联。这很好用,但是当我想输出时间表时,这些行会在时间表行记录的ID上排序。相反,我想在“daynr”字段上排序。我怎样才能做到这一点?代码是这样的:
<% for timesheetline in timesheet.tms_timesheetlines %>
<%= timesheetline.daynr %>
<%= timesheetline.description %>
<% end %>
答案 0 :(得分:0)
尝试:
<% for timesheetline in timesheet.tms_timesheetlines.order(:daynr) %>