1前提・実現したいこと
投稿された写真や名前をクリックすると、
詳細ページに遷移する機能を実装している。
その中で、詳細ページで投稿者の名前を表示したく、
エラーコードが出てしまった
2発生している問題・エラーメッセージ
NameError in Prototypes#show undefined local variable or method `prototype' for #<#<Class:0x00007fc027ae7100>:0x00007fc027ae5710> Did you mean? prototype_url
3該当のソースコード
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 "プロトタイプの画像" %> %> </div> <div class="prototype__body"> <div class="prototype__detail"> <p class="detail__title">キャッチコピー</p> <p class="detail__message"> <%= "プロトタイプのキャッチコピー" %> </p> </div> <div class="prototype__detail"> <p class="detail__title">コンセプト</p> <p class="detail__message"> <%= "プロトタイプのコンセプト" %> </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>
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(@prototype) else @prototype = @prototype.includes(:user) render :new end end private def prototype_params params.require(:prototype).permit(:title, :catch_copy, :concept,:image).merge(user_id: current_user.id) end def show @prototype = Prototype.find(params[:id]) end end
_prototype.html.erb
<div class="card"> <%= link_to prototype_path(prototype.id),method: :get do %> <%= image_tag prototype.image.variant(resize: '300x300'), class: :card__img if prototype.image.attached? %> <% end %> <div class="card__body"> <%= link_to prototype.title, prototype_path(prototype.id),method: :get, class: :card__title%> <p class="card__summary"> <%= prototype.catch_copy %> </p> <%= link_to "by#{prototype.user.name}", prototype_path(prototype.id),method: :get, class: :card__user %> </div> </div>
4自分で調べたことや試したこと
userと紐付けができないと思い、
アソシエーションを確認
userモデル
has_many :prototypes
prototypeモデル
belongs_to :user
の記述は確認できた
5使っているツールのバージョンなど補足情報
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/10/24 09:10