DBに以下のようなcsvファイルで読み込んで、viewにeachを使って表示したいと思っています。
エラーとなってしまい、どこが間違っているのかわかりません。
画像の表示は以下のような書き方だとうまくいかないのでしょうか?
ご回答いただけると幸いです。よろしくお願いいたします。
<%= image_tag "<% t.img_url %>", class: "u-portfolio__image" %>
prefecture_pic.csv prefecture,its_region,place,intro,img_url 北海道,its-hokkaido,北海道,一面真っ白な世界,/assets/prefectures/hokkaido.jpg 青森県,its-aomori,青森県立石寺,神秘的な風景が広がります,/assets/prefectures/aomori.jpg
view <% @prefecture_pic.each do |t| %> <figure class="col-sm-6 col-md-4 u-portfolio__item" data-groups='["<% t.its_region %>"]'> <%= image_tag "<% t.img_url %>", class: "u-portfolio__image" %> <figcaption class="u-portfolio__info"> <h6 class="mb-0"><% t.place %></h6> <small class="d-block"><% t.intro %></small> </figcaption> </figure> <% end %>
controller @prefecture_pic = PrefecturePic.all
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/12/28 06:20