前提・実現したいこと
トップページに各ユーザーが投稿した記事にそのユーザーのアイコンを添付したいです。
2人目のユーザーを作成しようとしたところ下記のエラーが起きました。
Active strageで画像保存、deviseでユーザー管理をしています。
ユーザーの新規登録時には画像保存はさせず、ユーザー編集機能で画像を保存させることにしています。
トップページ(posts/index.html.erb)では、ログインしているユーザーのアイコンを表示させています。
そのトップページに各ユーザーが投稿した記事を表示させ、そこに投稿したユーザーのアイコンを表示できているか確認するために2人目のユーザーを登録させようとしたところエラーが起きました。
index.html.erbは一部省略しています。
発生している問題・エラーメッセージ
Can't resolve image into URL: to_model delegated to attachment, but attachment is nil Extracted source (around line #141): 139 <% if user_signed_in? %> 140 <div class= 'post-user-info'> 141 <%= image_tag current_user.avatar, class:"post-user-image" %> 142 <p class= 'post-user-text'> 143 <%= current_user.introduction %> 144 </p>
該当のソースコード
ruby
1(posts/index.html.erb) 2<ul class='post-lists'> 3 <% @posts.each do |post|%> 4 <li id="posts-top" class='list'> 5 <%#= link_to post_path(post.id) do %> 6 <div class='post-info'> 7 <p class='post-name'> 8 <%= post.trip_date %>/<%= post.place%> 9 </p> 10 <div class='post-price'> 11 <h3><%= post.title %></h3> 12 </div> 13 </div> 14 <div class= 'post-info-user'> 15 <%= image_tag post.user.avatar, class: "post-image" if post.user.avatar.attached? %> 16 <div class= 'user-info'> 17 <h3 class='user-info-name'>田中太郎</h3> 18 <p>投稿日 <%= post.created_at %></p> 19 </div> 20 </div> 21 <%# end %> 22 </li> 23 <% end %> 24</ul> 25<% if user_signed_in? %> 26 <div class= 'post-user-info'> 27 <%= image_tag current_user.avatar, class:"post-user-image" %> 28 <p class= 'post-user-text'> 29 <%= current_user.introduction %> 30 </p> 31 <div class='top-user-btn'> 32 <%= link_to "編集", edit_user_path(current_user), method: :get, class: 'user-edit-btn'%> 33 <%= link_to "詳細", user_path(current_user), method: :get, class: 'user-show-btn'%> 34 </div> 35 </div> 36 <% end %>
ruby
1(posts_controller.rb) 2class PostsController < ApplicationController 3 before_action :authenticate_user!, only: [:new, :create] 4 5 def index 6 @posts = Post.all 7 end 8 9 def new 10 @post = Post.new 11 end 12 13 def create 14 @post = Post.new(post_params) 15 if @post.save 16 redirect_to root_path 17 else 18 render :new 19 end 20 end 21 22 private 23 def post_params 24 params.require(:post).permit(:trip_date, :place, :title, :content).merge(user_id: current_user.id) 25 end 26end
ruby
1(routes.rb) 2Rails.application.routes.draw do 3 devise_for :users 4 root to: 'posts#index' 5 resources :posts, only: [:index, :new, :create] 6 resources :users, only: [:show, :edit, :update] 7end
ruby
ruby
試したこと
インスタンス変数を渡したりしてみたが、うまくいかず余計わからなくなってしまいました。
原因を教えていただけると幸いです。
よろしくお願いします。
回答1件
あなたの回答
tips
プレビュー