Best way to implement voting in a Rails application?

对着背影说爱祢 提交于 2019-12-03 00:35:53

There's no general 'best' solution. Check out how both work and see what best fits what you want and what fits your application's needs. In this case, acts_as_votable allows voting on models. vote_fu contains more as it ads the concept of 'acts_as_voter' to limit the models that may vote. It also adds 'has_karma' to give karma based on user voting.

As you see, both are different options and only you know what best fits your needs.

Coming in a bit late here, but from what I can tell vote_fu was inspired by acts_as_voteable (and supports its syntax), but is more actively developed.

vote_fu is very outdated and isn't compatible with modern rails distributions (I'm using 3.2.5). Thumbs_up has replaced it form Rails 3.x development. Go with that or either acts_as_votable as they are still being maintained.

Thumbs_up has some extra options like built-in karma tracking.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!