2

我可以想到几种方法来做到这一点,但我不确定该选择什么..

我有这个类Topic,我正在尝试对其范围进行限制,以便仅在它具有关联对象Replytopic.replies计数大于 0 时才返回主题。

最糟糕的方法:

@topics.select{ | topic | topic.replies > 0 && topic.title == "Conversation" }

理想情况下,我想使用where范围。

  scope = current_user.topics
  scope = scope.joins 'left outer join users on topics.registration_id = registration_members.registration_id'
  # scope = .. here I want to exclude any of these topics that have both the title "Conversations" and replies that are not greater than 0

我需要将这些选择“附加”到已经选择的任何其他内容上。所以我的选择不应该将所有其他人排除在这个选择之外。这只是说任何Topic回复少于一个并且也称为“对话”的人都应该被排除在最终返回之外。

有任何想法吗?

更新

一个半哈希的想法:

items_table = Arel::Table.new(scope)
unstarted_conversations = scope.select{|a| a.title == "Conversation" && a.replies.count > 0}.map(&:id)
scope.where(items_table[:id].not_in unstarted_conversations)
4

1 回答 1

1

您可以使用称为count cache的东西,基本上它的作用是向表中添加一个字段,并将指定类型的“关联”总数存储在该字段中并自动更新。

查看这个旧屏幕/ascii 演员表:http ://railscasts.com/episodes/23-counter-cache-column?view=asciicast

这是更新的东西:http: //hiteshrawal.blogspot.com/2011/12/rails-counter-cache.html

在您的情况下,如下所示:

# migration
class AddCounterCacheToTopìc < ActiveRecord::Migration
  def self.up
    add_column :topics, :replies_count, :integer, :default => 0
  end

  def self.down
    remove_column :topics, :replies_count
  end
end

# model
class Replay < ActiveRecord::Base
  belongs_to :topic, :counter_cache => true
end

希望对您有所帮助。

于 2012-12-12T21:09:27.060 回答