rub### 前提・実現したいこと
Ruby on railsで、写真投稿アプリを作っています。
その中で、部分テンプレート _prototype.html.erb
を表示させたいのですが、エラーが表示されます。
発生している問題・エラーメッセージ
投稿内容一覧を表示させる際に、以下のようなエラーが発生しています。
![イメージ説明](f31933a42db3dccb06cd13e0b9d26f00.jpeg) [リンク内容](https://gyazo.com/e00ff514ae3353cfdac044ba483bee8b) ```NoMethodError in Prototypes#index Showing /Users/shin/projects/protospace-32080/app/views/prototypes/_prototype.html.erb where line #2 raised: undefined local variable or method `prototype' for #<#<Class:0x00007fbd106cce40>:0x00007fbd106d7548> Did you mean? @prototypes ### 該当のソースコード ### _prototype.html.erb ```html <div class="card"> <%= image_tag prototype.image, class: 'card__img' if prototype.image.attached? %> <div class="card__body"> <%= link_to "prototype.title", root_path, class: :card__title%> <p class="card__summary"> <%= "prototype.catch_copy" %> </p> <%= link_to "by prototype.user.name", root_path, class: :card__user %> </div> </div>
/prototypes/index.html.erb
html
1<main class="main"> 2 <div class="inner"> 3 <% if user_signed_in? %> 4 <%# ログインしているときは以下を表示する %> 5 <div class="greeting"> 6 こんにちは、 7 <%= link_to current_user.name, root_path, class: :greeting__link%> 8 </div> 9 <%# // ログインしているときは上記を表示する %> 10 <% end %> 11 <div class="card__wrapper"> 12 <%# 投稿機能実装後、部分テンプレートでプロトタイプ投稿一覧を表示する %> 13 <%= render partial: "prototype", collecition: @prototypes %> 14 </div> 15 </div> 16</main> 17
prototypes_controller.rb
ruby
1class PrototypesController < ApplicationController 2 3 def index 4 @prototypes = Prototype.all 5 end 6 7 def new 8 @prototype = Prototype.new 9 end 10 11 def create 12 Prototype.create(tweet_params) 13 end 14 15 private 16 17 def tweet_params 18 params.require(:prototype).permit(:title, :catch_copy, :concept, :image).merge(user_id: current_user.id) 19 end 20 21 22end
試したこと
image tagメソッドが上手く適用できていないのではないかと思い、いろいろ記述を変えてみたりしましたが、エラーが消えない状況です。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/11/17 11:41