後,如果我有這樣的數據庫表服務器:Rails的顯示最新值分組
日期,SERVER_ID,服務器名,server_status
我已經在我的控制器設置:
@servers = Server.all.group(:server_id)
並假設我認爲我有這樣的表格:
<% @servers.each do |server| %>
<td><%= server.server_name %></td>
<td><%= server.server_status %></td>
如何在最近記錄的日期顯示服務器狀態?
但假設我想在視圖中的表顯示按server_name排序的結果不會工作不是它? – Catmal
@Catmal你可以通過多於一列的順序排序:'Server.order('server_name DESC,created_at DESC')' –
好吧抱歉,我的意思是讓我說,我允許與ransack查看例如排序。這可能會弄亂結果嗎? – Catmal