开始使用 Vote_fu
我已经成功安装了 Rails 3 的 Vote_fu,并在控制台窗口中为所需的对象投票,但我对 Rails 是全新的,所以我真的不知道如何在控制器中实现投票系统。我真的只是在寻找一些方向,我会尝试从那里开始。
谢谢。
I have successfully installed Vote_fu for rails 3, and have voted for the desired object in the console window, but I'm brand new to rails, so I really don't know how to implement a voting system in the controller. I'm really just looking for some direction, and I'll try to take it from there.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一切都在Github的vote_fu页面中有描述,
有两种方法
vote_for
和vote_against
您可以在控制器中使用它。当然,在此之前,您必须将
acts_as_voter
和acts_as_votable
添加到您的模型中。就是这样Everything is described at Github's vote_fu page
There are two methods
vote_for
andvote_against
which you can use in your controller.Before that, for sure, you have to add
acts_as_voter
andacts_as_votable
to your models. Thats it