私は has_many Photos (beels_to Items) の Items モデルを持っています。両方とも Admin の下に名前空間があります。フォームを介したアップロードは、写真の新規または編集アクションを介して期待どおりに機能します (ただし、アイテム表示ページからレンダリングすると、「NilClass:Class の未定義メソッド `model_name'」エラーが発生します。新しい写真レコードを作成すると、I item_id を渡しますが、アイテム ページのフォームに何を渡せばよいかわかりません。
PhotosController;
class Admin::PhotosController < Admin::BaseController
def new
@photo = Photo.new(:item_id => params[:item_id])
end
def create
@photo = Photo.new(params[:photo])
if @photo.save
flash[:notice] = "Successfully created photo."
redirect_to [:admin,@photo.item]
else
render :action => 'new'
end
end
def edit
@photo = Photo.find(params[:id])
end
def update
@photo = Photo.find(params[:id])
if @photo.update_attributes(params[:photo])
flash[:notice] = "Successfully updated photo."
redirect_to [:admin,@photo.item]
else
render :action => 'edit'
end
end
def destroy
@photo = Photo.find(params[:id])
@photo.destroy
flash[:notice] = "Successfully destroyed photo."
redirect_to [:admin,@photo.item]
end
end
写真/_form.html.haml;
= form_for [:admin,@photo], :html => {:multipart => true,id: 'upload'} do |f|
= f.hidden_field :item_id
%p
= f.label :name
%br/
= f.text_field :name
%p
= file_field_tag :image, multiple: true, name:'photo[image]',id: 'photo_image'
%p= f.submit
アイテム/show.html.haml;
= render 'admin/photos/form'