这是我的问题:
我有三种模式:
分类群
class Taxon < ActiveRecord::Base
has_and_belongs_to_many :categories, :uniq => true
分类
class Category < ActiveRecord::Base
has_and_belongs_to_many :taxons, :uniq => true
has_many :products
和产品
class Product < ActiveRecord::Base
belongs_to :category
在Active Admin中,我必须添加自定义过滤器,以便按分类搜索产品。
如果你有一个想法,如何做到这一点,我会非常感激任何帮助。
P.S。我也有一个嵌套的分类集,如果这很重要