モデルsubmission
とネストされたモデルがありますattachment
でsubmission.rb
:
has_many :assets, :dependent => :destroy
accepts_nested_attributes_for :assets, :allow_destroy => true
でassets.rb
:
attr_accessible :file_id, :attachment
belongs_to :submission
has_attached_file :attachment
私のsubmission
コントローラーで:
def new
@submission = Submission.new
@asset = 2.times{ @submission.assets.build }
respond_to do |format|
format.html # new.html.erb
format.json { render json: @submission }
end
end
def edit
@submission = Submission.find(params[:id])
@asset = 2.times{ @submission.assets.build }
end
そして、私はunknown attribute: submission_id
エラーが発生しています。
ここで何が間違っている可能性があります。
私はここでスクリーンキャストをフォローしています: http ://www.emersonlackey.com/article/rails-paperclip-multiple-file-uploads