gpt4 book ai didi

ruby - 如何在没有投票 gem 的情况下在 Rails 中实现投票

转载 作者:数据小太阳 更新时间:2023-10-29 08:38:34 24 4
gpt4 key购买 nike

我创建了一个黑客新闻克隆,我正在尝试实现一个投票系统,根据过去 7 天从投票最多到投票最少的顺序排列。我知道有几个 gem 可以执行此操作,但我想在使用 gem 之前手动执行一次。

我遇到的第一个问题是多次投票。我想让每个用户都可以对任意数量的链接进行投票,但每个链接只能投一票。我试图在我的 votes_controller 中做到这一点但它只允许链接本身总共有一票,而不是用户对每个链接有一票。这是我在 votes_controller 中的方法:

 def create
@vote = Vote.new(voter_params)
if @vote.save
redirect_to links_path, notice: "Thanks for voting!"
else
redirect_to links_path, notice: "Sorry, you can only vote on a link once."
end
end

我的 schema.rbusers 组成, links , 和 votesuser_id links 中的属性和 votes如此处所列:

 create_table "links", force: true do |t|
t.string "description"
t.string "url"
t.datetime "created_at"
t.datetime "updated_at"
t.integer "user_id"
end

create_table "users", force: true do |t|
t.string "name"
t.string "email"
t.string "user_name"
t.string "password_digest"
t.datetime "created_at"
t.datetime "updated_at"
end

create_table "votes", force: true do |t|
t.integer "user_id"
t.integer "link_id"
t.datetime "created_at"
t.datetime "updated_at"
end

我如何重构我当前的操作以允许对任何链接进行投票,但每个用户只能投一票?

好的,我的第二个也是最后一个问题是,一旦解决了投票问题,我如何根据过去 7 天将它们从投票最多、投票最少的顺序排序,当然是通过 postgres 服务器方法。在我看来,通过数据库更有效率。我很感激我能得到的任何见解,我完全被难住了,谢谢!!

这是我的链接模型,可以提供一个更好的主意:

class Link < ActiveRecord::Base
validates :url, :presence => true, :url => true
belongs_to :user
has_many :votes
has_many :comments, :as => :commentable

def self.sort_by_votes
sorted_votes = Link.all.sort_by { |link| link.votes.count }
sorted_votes.reverse
end
end

这是我的观点:

<% if current_user %>
<p style="float:right; padding-right: 10px;"> Logged in as: <%= current_user.name %> </p>
<% end %>
<div class="container" id="content">
<button class="btn btn-default btn-xs" style="float:right"><%= link_to "New Link", new_link_path %></button><br><br>
<table >
<thead>
<tr>
</tr>
</thead>
<tbody class="stories">
<% @links.sort_by_votes.each do |link| %>
<%= form_for link.votes.new do |f| %>
<%= f.hidden_field :link_id %>
<%= f.submit '▲' %>
<% end %>
<%= "#{link.votes.count} votes " %>
<%= link_to link.description, link.url %>
<small><%= "(#{link.url})" %></small>
<span class="date"><%= link.created_at.to_time.strftime("%b %-d, %Y @ %-I:%M%P") %></span>
<br>
<button class="btn btn-default btn-xs">
<%= link_to "Delete", link, :method => :delete, :data => { :confirm => "are you sure about that?" } %>
</button>
<button class="btn btn-default btn-xs">
<%= link_to "Comment", link_path(link)%>
</button><hr/>
<% end %>
</tbody>

</div>

最佳答案

你应该为此使用验证:

class Vote
#...
validates :user_id, uniqueness: { scope: :link_id }

关系计数器相当复杂,具体取决于您的数据库,并且通常还会产生复杂的耗时查询。我会使用 counter_cache 选项。有一个 nice post关于如何使用它们。

$ rails g migration add_votes_counter_to_link votes_count:integer
class AddVotesCounterToLinks < ActiveRecord::Migration
def change
add_column :links, :votes_count, :integer, default: 0
end
end
$ rake db:migrate

class Vote
belongs_to :link, counter_cache: true
end

class Link
has_many :votes

scope :most_voted, -> do
where(created_at: (Time.now - 7.days)..Time.now ) # created 7 days ago
.order('votes_count DESC') # ordered by votes_count
.limit(100) # first 100
end

然后你可以这样做:

Link.most_voted

关于ruby - 如何在没有投票 gem 的情况下在 Rails 中实现投票,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19256203/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com