1
我正在使用Rails Admin創業板。我有以下兩種模式:Rails管理員和has_and_belongs_to_many
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管理員中,我無法將類別添加到現有的體驗中。在一個特定的經驗的編輯網站,我看到:
正如你看到的,我不能選擇任何類型,即使我已經創建了幾個類別。
在類別形式。你可以設置體驗嗎?或者只是在協會的一方? –