私のrails-appには2つのモデルがあり、それらをElementとTypeと呼びましょう。
:elements has_and_belongs_to_many :types
と
:types has_and_belongs_to_many :elements
Elementモデルでは、次のようないくつかのタイプを除外したいと思います。
class Element < ActiveRecord::Base
before_filter :exclude_some_types
def exclude_some_types
# if certain type satisfies condition, exclude it from the types list
end
どうすればそれをコーディングできますか?除外部分を意味します。
THX