前提・実現したいこと
image_tagを使用して画像をトップページに表示しようとしたところ、
ActionView::SyntaxErrorInTemplateが解決できません。
発生している問題・エラーメッセージ
ActionView::SyntaxErrorInTemplate in PrototypesController#index
Encountered a syntax error while rendering template: check <div class="card"> <%= link_to image_tag (prototype.image, class: :card__img) prototype_path(@prototype.id) %> <div class="card__body"> <%= link_to 'prototype.title', prototype_path(@prototype.id), class: :card__title %> <p class="card__summary"> <%= prototype.catch_copy %> </p> <%= link_to "by #{prototype.user.name}", prototype_path(@prototype.id), class: :card__user %> </div> </div>
エラーメッセージ
該当のソースコード
app/views/prototypes/_prototype.html.erb
Ruby
1<div class="card"> 2 <%= link_to image_tag (prototype.image, class: :card__img) prototype_path(@prototype.id) %> 3 <div class="card__body"> 4 <%= link_to 'prototype.title', prototype_path(@prototype.id), class: :card__title %> 5 <p class="card__summary"> 6 <%= prototype.catch_copy %> 7 </p> 8 <%= link_to "by #{prototype.user.name}", prototype_path(@prototype.id), class: :card__user %> 9 </div> 10</div>
app/controllers/prototypes_controller.rb
Ruby
1class PrototypesController < ApplicationController 2 def index 3 @prototypes = Prototype.all 4 end 5 6 def new 7 @prototype = Prototype.new 8 end 9 10 def create 11 @prototype = Prototype.new(prototype_params) 12 if @prototype.save 13 redirect_to root_path 14 else 15 render :new 16 end 17 end 18 19 def prototype_params 20 params.require(:prototype).permit(:title, :catch_copy, :concept, :image).merge(user_id: current_user.id) 21 end 22end
app/models/prototype.rb
Ruby
1class Prototype < ApplicationRecord 2 belongs_to :user 3 has_one_attached :image 4 5 validates :title, presence: true 6 validates :catch_copy, presence: true 7 validates :concept, presence: true 8 validates :image, presence: true 9end
app/views/prototypes/index.html.erb
Ruby
1<main class="main"> 2 <div class="inner"> 3 <% if user_signed_in? %> 4 <div class="greeting"> 5 こんにちは、 6 <%= link_to "#{current_user.name}さん", root_path, class: :greeting__link%> 7 </div> 8 <% end %> 9 <div class="card__wrapper"> 10 <%= render 'prototype', collection: @prototypes %> 11 </div> 12 </div> 13</main>
config/routes.rb
Ruby
1Rails.application.routes.draw do 2 devise_for :users 3 root to: 'prototypes#index' 4 resources :prototypes, only: [:index, :new, :create, :show] 5end
試したこと
アソシエーションが間違っているために、prototype.imageで取得できていないのだと思い、アソシエーションの見直しを行いました。
link_toやimage_tagの使用方法も見直しましたが間違いがわかりません。
宜しくお願いいたします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/11/23 06:25
2020/11/23 06:28
2020/11/23 06:39
2020/11/23 07:28