1

我正在使用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 管理员中,我无法将类别添加到现有体验。在特定体验的编辑站点中,我看到:

经验不能加类

如您所见,即使我创建了多个类别,我也无法选择任何类别。

4

1 回答 1

3

通过将以下内容添加到体验模型中解决了该问题:

attr_accessible :category_ids

代替

attr_accessible :categories
于 2012-12-30T12:14:56.860 回答