###問題点
gyazoで添付しますが、出品にて画像を3枚登録し、編集画面へ遷移すると3*3で9枚表示されてしまいます
fields_forが「imageの数だけ中の記述を繰り返す」と行った働きをすることはわかるのですが、
具体的な解決策が見出せません。。
###ゴール
下記コードをなるべく崩さないで(preview機能のjs適用であったり、何もない時にダミー画像を埋めるなど)、
登録した3枚の画像を表示しつつ、file_fieldによる画像の変更もできるようにしたい
###考察
fields_for内には一個だけ.upload_box_imageを置くなどといったことをすれば
保存した分だけ、今回であれば3つ、表示される?
がうまいことかけません
###現状
問題となっている箇所(gyazoリンク)
###該当コード(edit.html.haml)
haml
1 .upload__box__images 2 = f.fields_for :images do |i| 3 .upload__box__image 4 %label{for: "image1"} 5 = image_tag @first_image.image.url, alt: "Item upload" ,height: "100%", width: "100%", id: "preview1", class: "preview-image" 6 = i.file_field :image, multiple: true, id:"image1", type: "file", accept: "image/*", onchange: "previewImage1(this);", style: "display: none;", name: "images[image][]" 7 .upload__box__image 8 %label{for: "image2"} 9 - if @second_image.present? 10 = image_tag @second_image.image.url, alt: "Item upload" ,height: "100%", width: "100%", id: "preview2", class: "preview-image" 11 - else 12 = image_tag "pict/item_upload_dummy.png", alt: "Item upload dummy" ,height: "100%", width: "100%", id: "preview2", class: "preview-image" 13 = i.file_field :image, multiple: true, id:"image2", type: "file", accept: "image/*", onchange: "previewImage2(this);", style: "display: none;", name: "images[image][]" 14 .upload__box__image 15 %label{for: "image3"} 16 - if @third_image.present? 17 = image_tag @third_image.image.url, alt: "Item upload" ,height: "100%", width: "100%", id: "preview3", class: "preview-image" 18 - else 19 = image_tag "pict/item_upload_dummy.png", alt: "Item upload dummy" ,height: "100%", width: "100%", id: "preview2", class: "preview-image" 20 = i.file_field :image, multiple: true, id:"image3", type: "file", accept: "image/*", onchange: "previewImage3(this);", style: "display: none;", name: "images[image][]"
自分の認識が間違っていなければ、controllerやモデルには問題ないので、hamlコードだけですが、
情報少なければ、指摘していただけると助かります。
初歩的な質問かと思いますが、ご教授いただけると幸いです。
よろしくお願いいたします
あなたの回答
tips
プレビュー