cached_votes_up
我在 Communities 表中有一个名为的列。现在我想获取按编号排序的记录。
@search = Community.search do
fulltext params[:search]
with(:genre_id, params[:genre])
order_by :cached_votes_up, :desc
paginate :page => params[:page], :per_page => 5
end
@communities = @search.results
但这会返回以下错误:
没有为名为“cached_votes_up”的社区配置字段