編集画面へのリンクをクリックすると『undefined method `user_id' for nil:NilClass』と表示されてしまいます。
https://gyazo.com/58b87aa87c0e985a4fcf712935238488
前提・実現したいこと
(prototypeの)投稿者以外が(prototypeの)編集画面にURLから直接アクセスできない様にしたい!
※直接アクセスした際はトップページへ
【この実装に向けて行ったこと】
①prototypeコントローラー内にのprivateにてmove_to_indexメソッド作成
②before_actionnにてeditアクションにのみ設定
☆説明不足な箇所等あるかもしれませんが、ぜひ皆様のお力をお貸しください
発生している問題・エラーメッセージ
https://gyazo.com/58b87aa87c0e985a4fcf712935238488
NoMethodError in PrototypesController#edit undefined method `user_id' for nil:NilClass
該当のソースコード
class PrototypesController < ApplicationController before_action :authenticate_user!, only: [:new, :create, :edit, :update, :destroy] before_action :move_to_index, only: [:edit] def index @prototype = Prototype.all.includes(:user) 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]) end def update prototype = Prototype.find(params[:id]) if prototype.update(prototype_params) redirect_to prototype_path(prototype.id) else @prototype = Prototype.find(params[:id]) render :edit end end def destroy @prototype = Prototype.find(params[:id]) @prototype.destroy redirect_to root_path end private def prototype_params params.require(:prototype).permit(:title, :catch_copy, :concept, :image).merge(user_id: current_user.id) end def move_to_index unless user_signed_in? && current_user.id == @prototype.user_id redirect_to action: :index end end end
class CreatePrototypes < ActiveRecord::Migration[6.0] def change create_table :prototypes do |t| t.string :title, null: false t.text :catch_copy, null: false t.text :concept, null: false t.references :user, foreign_key: true t.timestamps end end end
試したこと
sequelpro、マイグレーションファイルにて prototypeにuse_idカラムがあるかチェック(外部キー制約)
prototypeコントローラ内のeditアクションチェック
補足情報(FW/ツールのバージョンなど)
rails 6.0.0
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/04/04 05:11