こんばんわ。現在html: { multipart: true }を活用し、一つのモデルに対して複数の画像をアップロードするプログラミングを構築しています。
その中で、newについては問題なくcreate出来るようになりましたが、indexとshowがエラーになるようになり改善が出来ません。以下、エラー分とエラー内容です。
index
1The asset "[]" is not present in the asset pipeline. 2 3= image_tag review.image_1.to_s, width:"85%"
show
1The asset "[]" is not present in the asset pipeline. 2 3= image_tag @review.image_1.to_s, width:"70%"
恐れ入りますがご教示よろしくお願い致します。
new
1= form_for([@current_eatery, @review], html: { multipart: true }) do |f|^M 2= f.file_field :image_1, multiple: true^M
mount_uploaders :image_1, ImagesUploader serialize :image_1, JSON
あなたの回答
tips
プレビュー