投票系统在两张图片之间进行选择
我正在尝试在 Rails 3 上创建一个投票图片系统。我希望发生的是有两张图片,然后让网站上的人们投票选出他们更喜欢的一张。我知道他们有一个竖起大拇指的宝石,它可以快速创建一个投票系统。有没有一种方法可以修改 gem 以使其适用于图片,或者是否有一种简单的方法来创建它?
I am trying to create a voting picture system on rails 3. What I would like to have happen is have two pictures, and have people on the site vote for which one they like more. I know they have a thumbs_up gem, which creates a voting system quickly. Is there a way to either modify the gem to have it work for pictures or is there a simple way to create this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你不需要修改 gem。只需为您的图像创建一个合适的模型:
并为您的用户:
在您可以将 2 个图像的点赞数与以下内容进行比较之后:
you don't need to modify the gem. Just create an appropriate Model for your Images:
and for your users:
after you can compare the upvote count of 2 images with something like: