这是我的问题:
我有三个模型:
分类单元
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 中,我必须添加一个自定义过滤器来按分类搜索产品。
如果你有一个想法,如何去做,我会非常感激任何帮助。
PS我在分类单元中也有一个嵌套集,如果这很重要的话