繁体   English   中英

带有关联栏导轨的排序表

[英]Sorting table with associated columns rails

我正在尝试使用关联的列对表格进行排序,以便用户可以按歌曲名称,艺术家,专辑,流派和长度对歌曲进行排序。 但是我不确定该怎么做。 现在,我只能按歌曲名称对歌曲进行排序。

更新

因此,第一列正在工作。 但是我无法对其余的列进行排序,如果我单击歌曲名称对其进行排序,它们只能还原为“ asc”或“ dsc”。 希望我有道理?

这是我的代码如下:

SongsController

def index
    @songs = Song.order("#{sort_column} #{sort_direction}").paginate(:page => params[:page], :per_page => 10)
    @latest_albums = Album.order('created_at DESC').last(5)
end

    private

  def sortable_columns
    ["name", "length", "artist", "album", "genre"]
  end

  def sort_column
    sortable_columns.include?(params[:column]) ? params[:column] : "name"
  end

  def sort_direction
    %w[asc desc].include?(params[:direction]) ? params[:direction] : "desc" 
  end
end         

乐曲助手

def sort_link(column, title = nil) 
    title ||= column.titleize
    direction = column == sort_column && sort_direction == "asc" ? "desc" : "asc"
    icon = sort_direction == "asc" ? "fa fa-angle-double-up" : "  fa fa-angle-double-down"
    icon = column = sort_column ? icon : ""
    link_to "#{title}<span class='#{icon}'></span>".html_safe, {column: column, direction: direction}
  end  

视图

   <thead>
      <tr>
        <th>#</th>
        <th width="10%"></th>
        <th><%= sort_link "name", "Song" %></th>
        <th><%= sort_link "artist_id", "Artist" %></th>
        <th><%= sort_link "album_id" %></th>
        <th><%= sort_link "length" %></th>
        <th><%= sort_link "genre_id" %></th>
        <th></th>
        <th></th>
      </tr>
    </thead>

谢谢!

更改

 icon = column = sort_column ? icon : ""

icon = column == sort_column ? icon : ""

您需要检查column是否等于sort_column ,而您的原始代码是 column 等同sort_column

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM