index.htmlに編集ボタンと削除ボタンを表示させたい
ユーザーログインが完了すれば、トップページに投稿内容が全て表示される
機能ですが、編集ボタンと削除ボタンも一緒に表示させたいです。
発生している問題・エラーメッセージ
NameError in Homes#index Showing /Users/taigasoma/projects/meiwa/app/views/homes/index.html.erb where line #6 raised: undefined local variable or method `home' for #<#<Class:0x00007f931c445c08>:0x00007f931c4442b8> Did you mean? @homes
該当のソースコード
indexHTMLerb
1<%= render "shared/header" %> 2<% if user_signed_in? %> 3 <div class="more" > 4 <ul> 5 <li> 6 <%= link_to '商品の編集', edit_home_path(home.id), method: :get, class: "home-red-btn" %> 7 </li> 8 <li> 9 <%= link_to '削除', home_path(home.id), method: :delete, class:'home-destroy' %> 10 </li> 11 </ul> 12 </div> 13以下省略
routes
1Rails.application.routes.draw do 2 devise_for :users 3 root to: 'homes#index' 4 resources :homes do 5 end 6end
homeController
1class HomesController < ApplicationController 2 before_action :authenticate_user! 3 before_action :set_home, only: [:show, :destroy, :edit, :update] 4 def index 5 @homes = Home.all 6 end 7 8 def new 9 @home = Home.new 10 end 11 12 def create 13 @home = Home.new(home_params) 14 if @home.save 15 redirect_to root_path 16 else 17 render :new 18 end 19 20 def show 21 22 end 23 24 def destroy 25 @home.destroy 26 redirect_to root_path 27 end 28 29 def edit 30 31 if user_signed_in? && current_user.id == @home.user_id 32 else redirect_to root_path 33 end 34 end 35 36 def update 37 if @home.update(home_params) 38 redirect_to home_path 39 else 40 render :edit 41 end 42 end 43 end 44 45 46 47 private 48 49 def home_params 50 params.require(:home).permit(:buildingname, :age, :name, :tel, :email, :prefecture_id, :zone_id, :city, :address, :price, :rate, :rent, :management, :resident_id, images: []).merge(user_id: current_user.id) 51 end 52 53 def set_home 54 @home = Home.find(params[:id]) 55 end 56 57end 58
試したこと
今回、showアクションに遷移することではないので、before_actionにindexを追加
エラー発生
error
1couldn't find home without an id
home.idがうまく入っていないようです。
アドバイスございましたらよろしくお願いいたします。
追記
home.id
を
@home.id
で書き換えたところ、
NoMethodError in Homes#index Showing /Users/taigasoma/projects/meiwa/app/views/homes/index.html.erb where line #6 raised: undefined method `id' for nil:NilClass
こちらのエラーが発生しました。
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/11/21 01:16