Rails 3,HABTM如何查询条件

时间:2012-01-02 21:49:58

标签: ruby-on-rails ruby-on-rails-3

我有奖项和类别,加入了Awards_Categories

我有2个类别。

我需要找到所有具有Category.id = 1的奖励,但不能找到Category.id = 2。有些类别有一个或另一个,有些只有一个。我想要一份包含类别1而不是第2类的奖项列表。

我有一个范围:

scope :in_categories, lambda { |categories|
      joins(:categories).
      where(:awards_categories => { :category_id => categories } ).
      select("DISTINCT awards.*")
    }

这适用于以下查询:

@awardsall = Award.in_categories([1 && 2]).order("name ASC") 

我试过了

@awards_store = Award.in_categories([1]).order("name ASC") 

使用:

<% @awards_store.each do |store| %> 
        <li><%= link_to store.name, award_path(store), :title => store.info %> | 
        <% store.categories.each do |cat| %>
            <%= cat.id%>
        <% end %>
    </li>
<% end %>

EDIT --- 我知道这块不是我需要的。这只是我试图找到一种方法使它发挥作用。

虽然这列出了所有奖项,并且所有奖项类别仍然获得了具有category.id = 2的奖项,因为有些奖项同时具有

任何想法?

1 个答案:

答案 0 :(得分:2)

抱歉,没有测试它,但主要的想法是计算连接表中的行。

scope :in_categories, lambda { |*categories|
      joins(:categories).
      where(:awards_categories => { :category_id => categories } ).
      where("(select count(distinct category_id) from awards_categories where category_id in (?)) = ?", categories, categories.size)
    }

并以这种方式使用它:

@awardsall = Award.in_categories(1, 2).order("name ASC") 

@awards_store = Award.in_categories(1).order("name ASC") 

如果你有awards_categories的模型,那么它看起来会更好:

scope :in_categories, lambda { |*categories|
      joins(:categories).
      where(:awards_categories => { :category_id => categories } ).
      where("#{AwardCategory.where(:category_id => categories).count("distinct category_id").to_sql}=#{categories.size}")
    }