我正在开发一个用于运行soundcloud remix竞赛的开源应用程序。我的应用在这里运行,http://plpcomp11.herokuapp.com/
它有一个投票系统,自动显示前三个条目,但只显示前三个条目,并且不显示每个条目的投票数。
我想从数据库访问,为每个条目投了多少票。有任何想法怎么做???
数据库文件在github上。
https://github.com/soundcloud/soundcloud-remix/tree/master/db
答案 0 :(得分:0)
你的意思是,这样的事情?
控制器中的:
@remixes = Remix.all(:order => 'votes_count DESC', :limit => 3)
在视图中:
@remixes.each do |remix|
"#{remix.track_id} has #{remix.votes_count} votes"
end