我有:
class Entity < AR::Base
has_many :representatives,
inverse_of: :entity, dependent: :destroy
accepts_nested_attributes_for :representatives,
allow_destroy: true
end
和Entity的rails管理表单允许我内联创建嵌套代表。但是,在我们已经保存后,我无法通过实体的嵌套表单删除代表。我怀疑这与rails 4有关,因为还有其他类似的问题,答案不起作用: