前提・実現したいこと
テーブルに保存されているすべてのプロトタイプが、トップページに表示されるようにしたいのですがSprockets::Rails::Helper::AssetNotFound in Prototypes#indexとエラーになってしまいました。
発生している問題・エラーメッセージ
Sprockets::Rails::Helper::AssetNotFound in Prototypes#index
該当のソースコード
_prototype.html.erb <div class="card"> <%= link_to image_tag("プロトタイプの画像", class: :card__img ), root_path%> <div class="card__body"> <%= link_to "プロトタイプのタイトル", root_path, class: :card__title %> <%= prototype.title %> <p class="card__summary"> <%= prototype.catch_copy %> </p> <%= link_to "by プロトタイプの投稿者名", root_path, class: :card__user %> <%= prototype.user.name %> </div> </div>
config.rotes Rails.application.routes.draw do devise_for :users root to: "prototypes#index" resources :prototypes, only: [:index, :new, :create, :show, :edit, :update, :destroy] end
prototype_controller.rb class PrototypesController < ApplicationController #CSRF保護を無効にする protect_from_forgery with: :null_session before_action :move_to_index, except: [:index, :show] def index @prototype = Prototype.all.includes(:user) end def new @prototype = Prototype.new end def create @prototype = Prototype.new(prototype_params) if @prototype.save redirect_to root_path(@prototype) else render :new @prototype = Prototype.includes(:user) end end def show @prototype = Prototype.find(params[:id]) end def edit @prototype = Prototype.find(params[:id]) end def update prototype = prototype.find(params[:id]) prototype.update(prototype_params) if prototype.save redirect_to root_path(@prototype) else @prototype = @user.prototype.includes(:user) render :edit end end def destroy prototype = Prototype.find(params[:id]) prototype.destroy redirect_to root_path end private def prototype_params params[:prototype].permit(:title, :catch_copy, :concept, :image).merge(user_id: current_user.id) end def move_to_index unless user_signed_in? redirect_to action: :index end end end
ターミナル app/views/prototypes/_prototype.html.erb:2 app/views/prototypes/index.html.erb:11 Started GET "/" for ::1 at 2020-11-24 20:58:09 +0900 Processing by PrototypesController#index as HTML Rendering prototypes/index.html.erb within layouts/application User Load (0.4ms) SELECT `users`.* FROM `users` WHERE `users`.`id` = 1 ORDER BY `users`.`id` ASC LIMIT 1 ↳ app/views/prototypes/index.html.erb:4 Rendered prototypes/_prototype.html.erb (Duration: 13.8ms | Allocations: 5048) Rendered prototypes/index.html.erb within layouts/application (Duration: 16.0ms | Allocations: 6122) Completed 500 Internal Server Error in 17ms (ActiveRecord: 0.4ms | Allocations: 7008) ActionView::Template::Error (The asset "プロトタイプの画像" is not present in the asset pipeline. ): 1: <div class="card"> 2: <%= link_to image_tag("プロトタイプの画像", class: :card__img ), root_path %> 3: 4: <div class="card__body"> 5: <%= link_to "プロトタイプのタイトル", root_path, class: :card__title %> app/views/prototypes/_prototype.html.erb:2
試したこと
<%= link_to image_tag("プロトタイプの画像", class: :card__img ), root_path%>
から
<%= link_to image_tag(prototype.image, class: :card__img ), root_path%>に変更したがNo methodエラーとなった。
補足情報(FW/ツールのバージョンなど)
回答1件
あなたの回答
tips
プレビュー