Rails admin has_many :through relationship causing infinite rendering of templates when editing resource
问题 I have a rails app with a has_many :through model like so: class Blog < ActiveRecord::Base has_many :blog_categorizations, dependent: :destroy has_many :categories, :through => :blog_categorizations accepts_nested_attributes_for :categories, allow_destroy: true end class Category < ActiveRecord::Base has_many :blog_categorizations, dependent: :destroy has_many :blog, :through => :blog_categorizations accepts_nested_attributes_for :blog, allow_destroy: true end class BlogCategorization <