Rails 3、ActiveAdmin 自定义过滤器
我有 3 个关联模型:
class Brand < ActiveRecord::Base
has_many :car_models
end
class CarModel < ActiveRecord::Base
has_many :production_years
belongs_to :brand
end
class ProductionYear < ActiveRecord::Base
belongs_to :car_model
end
那么,如果我想按品牌进行过滤,如何在 ActiveAdmin Production_year 部分中创建自定义过滤器?默认过滤器:car_model 选择和年份值
I have 3 associated models:
class Brand < ActiveRecord::Base
has_many :car_models
end
class CarModel < ActiveRecord::Base
has_many :production_years
belongs_to :brand
end
class ProductionYear < ActiveRecord::Base
belongs_to :car_model
end
So, how i can make custom filter in ActiveAdmin production_year section, if i want make filtering by Brand? Default filters there: car_model select and year value
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你尝试过这样的事情吗?
编辑哎呀我没有注意到你的关联的复杂性,我认为如果你将其添加到你的 ProductionYear 类中,事情应该会更好:
Did you try something like this?
EDIT oops I didn't notice the complexity of your association, I think if you add this to your ProductionYear class things should work better: