2012-12-30 209 views
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管理員中,我無法將類別添加到現有的體驗中。在一個特定的經驗的編輯網站,我看到:

Experience can't add category

正如你看到的,我不能選擇任何類型,即使我已經創建了幾個類別。

+0

在類別形式。你可以設置體驗嗎?或者只是在協會的一方? –

回答

3

它解決了通過添加以下到經驗模型:的

attr_accessible :category_ids 

代替

attr_accessible :categories