4

我按照 Ryan Bates 教程实现了这个sort table columns并且效果很好,但是当我呈现索引页面时,表格已经按标题(asc)排序,我只想在用户单击列标题时对列进行排序。

我怎么能做到这一点?

代码

控制器

class ProductsController < ApplicationController
  helper_method :sort_column, :sort_direction

  def index
    @products = Product.order(sort_column + " " + sort_direction)
  end

  # ...

  private

  def sort_column
    Product.column_names.include?(params[:sort]) ? params[:sort] : "name"
  end

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

helper_method

def sortable(column, title = nil)
  title ||= column.titleize
  css_class = column == sort_column ? "current #{sort_direction}" : nil
  direction = column == sort_column && sort_direction == "asc" ? "desc" : "asc"
  link_to title, {:sort => column, :direction => direction}, {:class => css_class}
end

index.html.erb

<tr>
  <th><%= sortable "name" %></th>
  <th><%= sortable "price" %></th>
  <th><%= sortable "released_at", "Released" %></th>
</tr>

CSS

.pretty th .current {
  padding-right: 12px;
  background-repeat: no-repeat;
  background-position: right center;
}

.pretty th .asc {
  background-image: url(/images/up_arrow.gif);
}

.pretty th .desc {
  background-image: url(/images/down_arrow.gif);
}
4

3 回答 3

6

你应该看看 Ransack。它在排序和复杂搜索方面做得很好。有一个很棒的RailsCasts视频可以帮助你,而且侵入性要小得多。

于 2013-02-03T06:26:04.660 回答
3

以防万一有人会发现这个问题。可排序的列有一个很棒的宝石(不仅如此):https ://github.com/leikind/wice_grid

看看例子: http ://wicegrid.herokuapp.com/

于 2014-07-23T12:56:01.247 回答
1

您可以尝试对 index 方法进行 if 检查

def index
  if sort_column and sort_direction
    @products = Product.order(sort_column + " " + sort_direction)
  else
    @products = Product.all()
  end
end

def sort_column
  Product.column_names.include?(params[:sort]) ? params[:sort] : nil
end

def sort_direction
  %w[asc desc].include?(params[:direction]) ? params[:direction] : nil
end
于 2016-10-06T09:45:55.460 回答