前提・実現したいこと
Rails初心者です。
refileを使っています。CustomerのshowページにてCustomerに紐づいた画像を一覧で表示したいのですが、画像情報まで一緒に出てしまいます。
実際の画像を添付させていただきます。
ご教授頂けますと幸いです。
該当のソースコード
class CustomersController < ApplicationController def show @customer = Customer.find(params[:id]) end
モデル一部
class Customer < ApplicationRecord has_many :baby_images, dependent: :destroy attachment :baby_image class BabyImage < ApplicationRecord belongs_to :customer attachment :baby_image
view
1<%= @customer.baby_images.each do |image| %> 2 <%= attachment_image_tag image,:baby_image, :fill,150,150,format: 'jpeg' %> 3<% end %>
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/06/18 11:28