解決したいこと
各ユーザーが、自分のアプリのプロトタイプを投稿できるアプリを作成しています。
画像かタイトルをクリックしたら詳細ページに遷移するようにコントローラーにshowアクションを定義し、show.html.erbを記述したところ、なぜかまた別のディレクトリである_prototype.html.erbの構文エラーが出てしまいました。どなたかご教示頂けれが幸いです。
発生しているエラーのスクショになります
prototypes_controller.rb
class PrototypesController < ApplicationController def index @prototypes = Prototype.all end def new @prototype = Prototype.new end def create @prototype = Prototype.new(prototype_params) if @prototype.save redirect_to root_path else render :new end end def show @prototype = Prototype.find(params[:id]) end private def prototype_params params.permit(:title, :catch_copy, :concept, :image).merge(user_id: current_user.id) end end
_prototype.html.erb
<div class="card"> <% if prototype.image.attached? %> <%= link_to image_tag(prototype.image), prototype_path(prototypes.id) %> <% end %> </div> <% end %> <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}", root_path, class: :card__user %> </div>
show.html.erb
<main class="main"> <div class="inner"> <div class="prototype__wrapper"> <p class="prototype__hedding"> <%= "プロトタイプのタイトル"%> </p> <%= link_to "by #{@prototype.user.name}", root_path, class: :prototype__user %> <%# プロトタイプの投稿者とログインしているユーザーが同じであれば以下を表示する %> <div class="prototype__manage"> <%= link_to "編集する", root_path, class: :prototype__btn %> <%= link_to "削除する", root_path, class: :prototype__btn %> </div> <%# // プロトタイプの投稿者とログインしているユーザーが同じであれば上記を表示する %> <div class="prototype__image"> <%= image_tag(@prototype.image) %> </div> <div class="prototype__body"> <div class="prototype__detail"> <p class="detail__title">キャッチコピー</p> <p class="detail__message"> <%= @prototype.catch_copy %> </p> </div> <div class="prototype__detail"> <p class="detail__title">コンセプト</p> <p class="detail__message"> <%= @prototype.concept %> </p> </div> </div> <div class="prototype__comments"> <%# ログインしているユーザーには以下のコメント投稿フォームを表示する %> <%# <%= form_with local: true do |f|%> <div class="field"> <%# <%= f.label :hoge, "コメント" %><br /> <%# <%= f.text_field :hoge %> </div> <div class="actions"> <%# <%= f.submit "送信する", class: :form__btn %> </div> <%# <% end %> <%# // ログインしているユーザーには上記を表示する %> <ul class="comments_lists"> <%# 投稿に紐づくコメントを一覧する処理を記述する %> <li class="comments_list"> <%# <%= " コメントのテキスト "%> <%# <%= link_to "( ユーザー名 )", root_path, class: :comment_user %> </li> <%# // 投稿に紐づくコメントを一覧する処理を記述する %> </ul> </div> </div> </div> </main>
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/01/09 12:25