我有三个文件
class User
include Mongoid::Document
has_many :votos
...
...
end
class Picture
include Mongoid::Document
has_many :votos
belongs_to :user
...
...
end
class Voto
include Mongoid::Document
belongs_to :picture
belongs_to :user
field :value => :type => Integer
...
...
end
在 Voto 文档中,字段值是 1 到 5 之间的数字
所以我需要得到所有投票最多的照片来展示......
我怎么能做到这一点???
谢谢