我有兩個模型:Post和Image在論壇應用程序中使用dm-is-tree以父 - 子格式排列文章。在這一點上,這些圖像是Post模型的一部分。由於Post模型變得笨重,我需要添加更多的深度來標註圖像,我正在努力將圖像分解成它自己的模型,但仍然是輸出中的一部分。 於是我開始在一個簡單的佈置整合DM-accepts_nested_attributes: class Post
include
我試圖讓它工作,但它dosen't! 我 class User < ActiveRecord::Base
has_many :events, :through => :event_users
has_many :event_users
accepts_nested_attributes_for :event_users
end
class Event < Act