0

我有Favorite允许Entries并由Feeds用户保存的模型。

class User < ActiveRecord::Base
   has_many :favorites
   has_many :favorite_feeds, :through =>  :favorites, :source => :favorable, :source_type => "Feed"
   has_many :favorite_entries, :through =>  :favorites, :source => :favorable, :source_type => "Entry"
 end

 class Favorite < ActiveRecord::Base
   belongs_to :user
   belongs_to :favorable, :polymorphic => true
   attr_accessible :user, :favorable
 end

 class Feed < ActiveRecord::Base
   has_many :favorites, :as => :favorable
   has_many :fans, :through => :favorites, :source => :user
 end

 class Entry < ActiveRecord::Base
   has_many :favorites, :as => :favorable
   has_many :fans, :through => :favorites, :source => :user
 end

我现在需要Entries在页面上显示 ALL 并指示是否current_user已将每个添加Entryfavourite. 目前调用是从数据库@entry.fans中获取每个,这是低效的。User我需要一种过滤此调用的方法,以仅获取属于的收藏夹,current_user因为我不需要任何其他记录。

我可以在控制器的内存中执行此操作,但我认为有一种方法可以简单地选择s 收藏夹并使用 Active::Recordcurrent_user将其加入模型。Entries

谢谢。

4

1 回答 1

1

控制器:

@entries = Entry.all
@user_favorite_entry_ids = current_user.favorite_entries.pluck(:id)

看法:

<% @entries.each do |entry| %>
<%= @entry.id %>: <%= @entry.id.in?(@user_favorite_entry_ids) ? 'favorite of current user' : 'not' %>
<% end %>

或者,如果你真的喜欢在数据库中做事:

@entries = Entry.select('entries.*, count(favorites.id) as current_user_favorite').joins("left join favorites on favorites.favorable_id = entries.id and favorites.favorable_type = 'Entry' and favorites.user_id = #{current_user.id}")

进而:

<% @entries.each do |entry| %>
  <%= @entry.id %>: <%= (@entry.current_user_favorite.to_i > 0) ? 'favorite of current user' : 'not' %>
<% end %>
于 2013-04-01T01:29:16.940 回答