前提・実現したいこと
rails6を実際に動かしながら勉強している者です。
Deviseで作成したuserモデルにiconカラムを追加し、プロフィール画面に表示させたいのですが、エラーが出てしまいます。
関係のありそうなコードは貼ったつもりですが、不足しているものがあれば教えてください。
ご教授のほど、よろしくお願いします。
発生している問題・エラーメッセージ
Sprockets::Rails::Helper::AssetNotFound in Users#show Showing /Users/*****/test_app/app/views/users/show.html.erb where line #4 raised: The asset "default.jpg" is not present in the asset pipeline. Extracted source (around line #4): <div> <%= image_tag @user.icon.to_s %> #←ここでエラー <h1><%= @user.nickname %></h1> <p><%= @user.user_name %></p> <p><%= @user.profile %></p>
プロフィール画面
#users/show.html.erb <body> <div> <%= image_tag @user.icon.to_s %> <h1><%= @user.nickname %></h1> <p><%= @user.user_name %></p> <p><%= @user.profile %></p> <% if @user.id == current_user&.id %> <%= link_to("アカウント設定", "http://localhost:3000/users/#{@user.id}/setting") %> <% end %> </div> #略 </body>
#users_controller class UsersController < ApplicationController def index @users = User.all end def show @user = User.find(params[:id]) #追記 end def edit @user = User.find(params[:id]) #追記 end def user_params params.require(:user).permit(:username, :nickname, :email, :password, :password_confirmation, :icon, :profile) end end
###ちなみに
ちなみに、上のshowファイル(プロフィール画面)では省略しているところに別の表記で以下のような書き方をしているのですが、これもこれでページ上で?マークとなってしまい表示されません。
<img~>かimage_tagのどちらかがわかればいいと思うのですが、教えていただけないでしょうか。
<% @user.posts.each do |post| %> <img src="<%= "/images/#{@user.icon}" %>"> <p><%= @user.nickname %></p><p><%= @user.user_name %></p> <div class="posts-index-item"> <%= link_to(post.content, "http://localhost:3000/post/#{post.id}") %> </div> <% end %>
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/10/14 00:26