class Product < ActiveRecord::Base
include Likeable
attr_accessibles :title, :number
end
class User < ActiveRecord::Base
include Likeable::UserMethods
end
在视图里面调用,
<%= @product.like_count %>
可以调用出来。
但现在想按照like_count
的总数来排序,在index
里用,
要怎么做的,在数据库里面没有这个字段。
按照https://github.com/schneems/likeable.git
使用的是 Redis.