前提・実現したいこと
プログラミング始めたばかりです。
ruby on rails を使いCloud9でSNSのようなシステムを作っています。
ユーザーネーム・ユーザー画像・ユーザー紹介文を作成中しようとしています。
ユーザー画像を表示する機能を実装中に以下のエラーメッセージが発生しました。
発生している問題・エラーメッセージ
エラーメッセージ Sprockets::Rails::Helper::AssetNotFound in Users#show Showing /home/ec2-user/environment/bookers/app/views/users/_user-info.html.erb where line #4 raised: The asset "no_image.jpg" is not present in the asset pipeline.
該当のソースコード
<tr> <%= attachment_image_tag user, :profile_image_id, :fill, 30, 30, fallback: "no_image.jpg" %><tr>-->
試したこと
<tr> <%= attachment_image_tag user, :profile_image_id, :fill, 30, 30, fallback: "no_image.jpg" %><tr>--> この記述を消すと画像は表示されませんが正常に動きます。補足情報(FW/ツールのバージョンなど)
/bookers/app/views/users/_user-info.html.erb <h2>User info</h2> <table class='table'> <tbody> <tr> <%= attachment_image_tag user, :profile_image_id, :fill, 30, 30, fallback: "no_image.jpg" %><tr>--> <tr> <th>name</th> <th> <%= user.name %></th> </tr> <tr> <th>introduction</th> <th><%= user.introduction %></th> </tr> </tbody> </table> <%= link_to edit_user_path(user), class: "btn btn-outline-secondary btn-block mb-3", method: :get do %> <i class="fas fa-user-cog"></i> <% end %>
/bookers/app/models/user.rb class User < ApplicationRecord # Include default devise modules. Others available are: # :confirmable, :lockable, :timeoutable, :trackable and :omniauthable devise :database_authenticatable, :registerable, :recoverable, :rememberable, :validatable attachment :profile_image has_many :books, dependent: :destroy validates :name, presence: true, length: { in: 2..20 } validates :introduction, length: { maximum: 50 } end
<tr> <%= attachment_image_tag user, :profile_image_id, :fill, 30, 30, fallback: "no_image.jpg" %><tr>--> この記述があるページ全てでエラーがでます。 色々調べたのですが直し方が分からなく、どうかご教授お願いまします。/bookers/config/routes.rb Rails.application.routes.draw do devise_for :users root to: 'homes#top' get "home/about" => "homes#about" get "home" => "homes#show" resources :books resources :users, only: [:index, :show, :edit, :update] # For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html end
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。