我的模型中有 has_and_belongs_to_many 关系。我有模型 Hotels 和 HotelRoomsTypes 之间的关系
class Hotel < ActiveRecord::Base
attr_accessible hotel_room_types_attributes
has_and_belongs_to_many :hotel_room_types,:class_name => "HotelRoomType"
accepts_nested_attributes_for :hotel_room_types, :allow_destroy => true
end
class HotelRoomType < ActiveRecord::Base
attr_accessible :name
has_and_belongs_to_many :hotels
end
当我尝试在 rails_admin 中创建关联时,我看到以下标记:
创建后,rails_admin 不会显示与这些模型的关联。有人解决了这些问题或找到了 rails_admin 的补丁吗?