投票系统在两张图片之间进行选择

发布于 2024-11-18 20:44:56 字数 142 浏览 4 评论 0原文

我正在尝试在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

活泼老夫 2024-11-25 20:44:56

你不需要修改 gem。只需为您的图像创建一个合适的模型:

class Image < ActiveRecord::Base
  acts_as_voteable
end

并为您的用户:

class User < ActiveRecord::Base
  acts_as_voter
end

在您可以将 2 个图像的点赞数与以下内容进行比较之后:

image1.votes_for > image2.votes_for

you don't need to modify the gem. Just create an appropriate Model for your Images:

class Image < ActiveRecord::Base
  acts_as_voteable
end

and for your users:

class User < ActiveRecord::Base
  acts_as_voter
end

after you can compare the upvote count of 2 images with something like:

image1.votes_for > image2.votes_for
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文