前提・実現したいこと
cloud9でRubyonRailsを利用して、本のタイトルと感想を投稿するアプリケーションを作成しています。
refileを導入し、attachment_image_tagで画像を表示させたいのですが、undefined methodエラーが発生してしまいます。
*元々、表示できていたのですが、マイグレーションファイルを編集してからエラーが発生するようになりました
<開発環境>
Cloud9
Rails 5.2.4.5
gem: devise、refile、refile-mini_magick、bootstrap、font-awesome
発生している問題・エラーメッセージ
NoMethodError in Books#index undefined method `profile_image' for #<Refile::File:0x00007f831c2ecf88>
該当のソースコード
【モデル】UserモデルとBookモデルをアソシエーションしています
class Book < ApplicationRecord belongs_to :user end
class User < ApplicationRecord devise :database_authenticatable, :registerable, :recoverable, :rememberable, :validatable has_many :books, dependent: :destroy attachment :profile_image end
【コントローラ】
ruby
1class BooksController < ApplicationController 2#中略 3 def index 4 @books = Book.all 5 @book = Book.new 6 @book.user_id = current_user.id 7 end 8#中略 9end
【View】サイドバーを部分テンプレート化し、indexアクションのviewに埋め込んでいます
views/books/index.html.erb
<div class="container"> <!--エラーメッセージ--> <% if @book.errors.any? %> <%= @book.errors.count %> errors prohibited this obj from being saved: <%= @book.errors.full_messages.each do |message| %> <%= message %> <% end %> <% end %> <div class="row"> <!--左側--> <%= render 'books/aside', book: @book %> <!--右側--> <div class="col-md-8"> <h2>Books</h2> <table class="table table-hover"> <thead> <tr> <th></th> <th>Title</th> <th>Opinion</th> <th colspan="3"></th> </tr> </thead> <tbody> <% @books.each do |book| %> <tr> <td> <%= link_to user_path(book.user.id) do %> <%= attachment_image_tag book.user.profile_image, :profile_image, :fill, 40, 40, format:'jpg', fallback:"no_image.jpg", size:"40x40" %> <% end %> </td> <td><%= link_to book.title, book_path(book.id) %></td> <td><%= book.body %></td> </tr> <% end %> </tbody> </table> </div> </div> </div>
views/books/_aside.html.erb
ruby
1 <!--左側--> 2 <div class="col-md-3"> 3 <h2>User info</h2> 4 <%= attachment_image_tag book.user.profile_image, :profile_image, :fill, 100, 100, format: 'jpg', fallback: "no_image.jpg" %> 5 <table class="table"> 6 <tbody> 7 <tr> 8 <th>name</th> 9 <th><%= book.user.name %></th> 10 </tr> 11 <tr> 12 <th>introduction</th> 13 <th><%= book.user.introduction %></th> 14 </tr> 15 </tbody> 16 </table> 17#中略 18 <h2 class="mt-3">New book</h2> 19 <%= form_with model:book, local:true do |f| %> 20 <div class="form-group"> 21 <label for="book_title">Title</label> 22 <%= f.text_field :title, class:"form-control book_title", id:"book_title" %> 23 </div> 24 <div class="form-group"> 25 <label for="book_body">Opinion</label> 26 <%= f.text_area :body, class:"form-control book_body", id:"book_body" %></br> 27 </div> 28 <div class="form-group"> 29 <%= f.submit "Create Book", class: "btn btn-success" %> 30 </div> 31 <% end %> 32 </div>
試したこと
*元々、表示できていたのですが、マイグレーションファイルを編集してからエラーが発生するようになりました。編集後はrails db:reset
した後、rails db:migrate
でマイグレーション済です。
attachment_image_tag
に渡すインスタンス変数@bookを、コントローラでBook.newと定義しており、空のオブジェクトを渡してしまっているのが原因かと思いましたが、Userモデルの他のカラムは問題なく出力できています。
<%= book.user.name %>
→問題無し
<%= book.user.introduction %>
→問題無し
<%= attachment_image_tag book.user.profile_image, :profile_image, :fill, 100, 100, format: 'jpg', fallback: "no_image.jpg" %>
→これだけエラー
attachment_image_tag
のインスタンス指定をbook.user.profile_image
ではなく、current_user.profile_image
と指定してみましたが、これも同様のエラーになります。
補足情報(FW/ツールのバージョンなど)
いろいろ調べてみたのですが、全く解決できそうにないので質問させていただきました。どなたがご教授いただけると幸いです。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。