红宝石在轨道上
我的模型中有has_and_belongs_to_many关系。 我有模型酒店和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?
我已经从rails_admin 0.4.9降级到0.4.1,并解决了问题。
您可以在此跟踪解决方案的进展情况:https://github.com/sferik/rails_admin/issues/1737
链接地址: http://www.djcxy.com/p/67053.html上一篇: ruby on rails