前提・実現したいこと
prototypesコントローラーにおいて、投稿者以外がURLを直接入力しeditアクションに
アクセスしたら、トップページにリダイレクトするように設定したい。
発生している問題・エラーメッセージ
エラーメッセージ
NoMethodError in PrototypesController#show undefined method `user_id' for nil:NilClass
コード一覧
prototypes_controller.rb
class PrototypesController < ApplicationController before_action :authenticate_user!, expect: [:index, :show] before_action :move_to_index, expect: :index def index @prototypes = Prototype.includes(:user).order("created_at DESC") 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]) @comment = Comment.new @comments = @prototype.comments.includes(:user) end def edit @prototype = Prototype.find(params[:id]) unless @prototype.user_id == current_user.id redirect_to action: :index end end def update @prototype = Prototype.find(params[:id]) if @prototype.update(prototype_params) redirect_to prototype_path else render :edit end end def destroy @prototype = Prototype.find(params[:id]) if @prototype.destroy redirect_to root_path end end def move_to_index unless user_signed_in? && current_user.id == @prototype.user_id redirect_to action: :index end end private def prototype_params params.require(:prototype).permit(:title, :catch_copy, :concept, :image).merge(user_id: current_user.id) end end
routes.rb
Rails.application.routes.draw do devise_for :users root to: "prototypes#index" resources :prototypes, only: [:new,:create,:show,:edit,:update,:destroy] do resources :comments, only: :create end resources :users, only: :show end
試したこと
prototypes_controller.rb記載のdef move_to_indexの変数を
色々と変えて試しましたが、どうすればトップページに遷移するのか、
答えを見つけられませんでした。
是非、アドバイスをいただき目的を達成したく、
ご指導の程宜しくお願い致します。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/06/04 23:55
2021/06/05 00:46
2021/06/05 01:41
2021/06/05 03:44