#質問内容
ActiveStorageを使用して複数枚画像投稿しようとしているのですが、no method errorが出てきてしまいます。
active_storage_blobsとactive_storage_attachmentsという名前のテーブル2つ生成。
Commentモデルを作成
#エラー内容
undefined method `images_url'
image_tag @comment.images_url この部分について色々調べてはみたものの解決策になる様な記事を見つけることができず詰まっております…
#該当コード
comment.rb has_many_attached :images
comment_controller.rb def update if @comment.update(comment_params) redirect_to edit_admin_comment_path else render :edit end end private def comment_params params.require(:site).permit(:name, :subtitle, :description, images: []) end
edit_html.erb = simple_form_for [:admin, @comment], url: admin_comment_path do |f| .box-body = f.input :images, as: :file, hint: 'JPEG/PNG (800x200)',input_html: { multiple: true } - if @comment.images.attached? - @comment.images.each do |image| = image_tag @comment.images_url, class: 'img-responsive'
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/06/16 23:51