アイデアは、コントローラーで画像配列をループし、それぞれを格納することです。リクエストには、アップロードされた画像に関する正しい情報が表示されます
{"utf8"=>"✓",
"authenticity_token"=>"usbr1ma8uKWBPiVFKh8AKoGYeaZTWAlLXscMBlFYyhw=",
"painting"=>{"name"=>"",
"image"=>[#<ActionDispatch::Http::UploadedFile:0x007fb414becad8 @original_filename="union_creek.jpg", @content_type="image/jpeg",
@headers="Content-Disposition: form-data; name=\"painting[image][]\"; filename=\"union_creek.jpg\"\r\nContent-Type: image/jpeg\r\n",
@tempfile=#<File:/var/folders/80/2pcl195n7_x0l8bnrjrp4xw40000gn/T/RackMultipart20130105-7179-kr8a7e>>,
#<ActionDispatch::Http::UploadedFile:0x007fb414beca10 @original_filename="what_lies_beneath.jpg",
@content_type="image/jpeg",
@headers="Content-Disposition: form-data; name=\"painting[image][]\"; filename=\"what_lies_beneath.jpg\"\r\nContent-Type: image/jpeg\r\n",
@tempfile=#<File:/var/folders/80/2pcl195n7_x0l8bnrjrp4xw40000gn/T/RackMultipart20130105-7179-iclmmw>>]},
"commit"=>"Create Painting",
"gallery_id"=>"13"}
しかし、carrierwaveが画像の画像を保存しようとすると、誤解を招くエラーが発生しました
Called id for nil, which would mistakenly be 4 -- if you really wanted the id of nil, use object_id
景色
= form_for [@gallery, @gallery.paintings.new] do |f|
%p= f.text_field :name, placeholder: "Enter painting name"
%p= f.file_field :image, multiple: true
%p= f.submit %>
コントローラー
uploader = ImageUploader.new
params[:painting][:image].each do |img|
uploader.store!(img) # crash here
end
コントローラに問題がありますが、キャリアで複数のファイルを保存するためのより良い方法を見つけることができませんでした。
誰かが私を指摘できますか?ありがとう