我正在使用Rails Admin gem。我有以下两个模型:
class Category < ActiveRecord::Base
attr_accessible :description, :name
has_and_belongs_to_many :experiences
end
class Experience < ActiveRecord::Base
attr_accessible :description, :city_id, :price, :title, :user_id
attr_accessible :categories
validates :title, :description, :user_id, :presence => true
belongs_to :user
belongs_to :city
has_and_belongs_to_many :categories
end
在 Rails 管理员中,我无法将类别添加到现有体验。在特定体验的编辑站点中,我看到:
如您所见,即使我创建了多个类别,我也无法选择任何类别。