我正在做一个可搜索和可排序的表。实际上,除了一些小细节之外,我已经做到了。我正在根据列名进行排序,但 rails 拒绝识别其中的 1 个。现在,这就是我的 index.html.erb:
<table class="pretty" border="1" cellpadding="10">
<tr>
<th><%= sortable("machine_name", "M.Name") %></th>
<th><%= sortable("machine_brand", "M.Brand") %></th>
<th><%= sortable("machine_model", "M.Model") %></th>
<th><%= sortable("control_unit_brand", "C.Unit Brand") %></th>
<th><%= sortable("control_unit_model", "C.Unit Model") %></th>
<th><%= sortable("tool_axis_x", "Axis X") %></th>
<th><%= sortable("tool_axis_y", "Axis Y") %></th>
<th><%= sortable("tool_axis_z", "Axis Z") %></th>
<th><%= sortable("rotary_axis_number", "R.Axis") %></th>
<th><%= sortable("linear_axis_number", "L.Axis") %></th>
<th><%= sortable "description" %></th>
<th><%= sortable("name", "Developer") %></th>
<th><%= sortable "updated_at" %></th>
</tr>
<% for conf in @confs %>
<tr class="<%= cycle('oddrow', 'evenrow') -%>">
<td><%= link_to conf.machine_name, conf %></td>
<td><%= conf.machine_brand %></td>
<td><%= conf.machine_model %></td>
<td><%= conf.control_unit_brand %></td>
<td><%= conf.control_unit_model %></td>
<td><%= conf.tool_axis_x %></td>
<td><%= conf.tool_axis_y %></td>
<td><%= conf.tool_axis_z %></td>
<td><%= conf.rotary_axis_number %></td>
<td><%= conf.linear_axis_number %></td>
<td><%= conf.description %></td>
<td><%= conf.developer.name unless conf.developer_id.blank? %></td>
<td><%= conf.updated_at %></td>
</tr>
<% end %>
</table>
您可以通过 developer_id 看到我如何联系模型 Conf 的开发人员并显示其名称。这部分正在工作,但是在排序时它会中断!可排序操作使用 sort_column ,就是这样:
def sort_column
( (User.column_names.include?(params[:sort])) || (Conf.column_names.include?(params[:sort])) ) ? params[:sort] : "machine_name"
end
用户是一个模型。Conf 是另一种模式。用户 has_many confs。会议
belongs_to :developer, :class_name => 'User', :foreign_key => 'developer_id'
我认为 rails 尝试按名称排序,但 conf 没有名称,会出现类似错误
no such column: name: SELECT "confs".* FROM "confs"
Sort_column 使用用户的列定义,但我认为 rails 的行为是用户的列与开发人员的列不同。如何制作导轨以识别开发人员列? 注意:我尝试了 Conf.developer.column_names.include?... 但收到错误“未定义的方法开发人员”