前提・実現したいこと
ユーザーがログイン中のみマイページの編集・削除を許可するようにしたいです。
しかし、実装中に以下のエラーメッセージが発生しました。
発生している問題・エラーメッセージ
ActionController::UrlGenerationError in Users#show No route matches {:action=>"edit", :controller=>"questions", :id=>nil}, missing required keys: [:id]
該当のソースコード
users/show.html.erb
Rails
1<% if user_signed_in? %> 2 <%= link_to '編集', edit_question_path(@question) %> | 3 <%= link_to '削除', "/questions/#{@question.id}", method: :delete %> | 4<% end%>
Rails
1Rails.application.routes.draw do 2 devise_for :users 3 root to: 'questions#index' 4 resources :questions 5 resources :users, only: :show 6end
Rails
1class UsersController < ApplicationController 2 before_action :authenticate_user!, only:[:edit, :destory] 3 4 def index 5 end 6 7 def show 8 user = User.find(params[:id]) 9 @nickname = user.nickname 10 @questions = user.questions 11 end 12 13 def edit 14 flash[:notice] = "ログイン済ユーザーのみ記事の編集ができます" unless user_signed_in? 15 end 16 17 def destory 18 flash[:notice] = "ログイン済ユーザーのみ記事の削除ができます" unless user_signed_in? 19 end 20 21end 22
補足情報
question.contorollerとquestions/show.html.erbはこんな感じで書いていて、ちゃんと動いてくれています。
class QuestionsController < ApplicationController before_action :set_question, only: [:show, :edit, :update, :destroy] before_action :move_to_index, except: [:index, :show] def index @questions = Question.includes(:user) end def show end def new @question = Question.new end def edit end def create @question = Question.new(question_params) respond_to do |format| if @question.save format.html { redirect_to @question, notice: 'Question was successfully created.' } format.json { render :show, status: :created, location: @question } else format.html { render :new } format.json { render json: @question.errors, status: :unprocessable_entity } end end end def update respond_to do |format| if @question.update(question_params) format.html { redirect_to @question, notice: 'Question was successfully updated.' } format.json { render :show, status: :ok, location: @question } else format.html { render :edit } format.json { render json: @question.errors, status: :unprocessable_entity } end end end def destroy @question.destroy respond_to do |format| format.html { redirect_to questions_url, notice: 'Question was successfully destroyed.' } format.json { head :no_content } end end private def set_question @question = Question.find(params[:id]) end def question_params params.require(:question).permit(:title, :content).merge(user_id: current_user.id) end def move_to_index redirect_to action: :index unless user_signed_in? end end
<p id="notice"><%= notice %></p> <a href="/users/<%= @question.user.id %>"> <span>質問者</span> <%= @question.user.nickname %> </a> <p> <strong>質問タイトル:</strong> <%= @question.title %> </p> <p> <strong>質問内容:</strong> <%= @question.content %> </p> <% if user_signed_in? && current_user.id == @question.user_id %> <%= link_to '編集', edit_question_path(@question) %> | <%= link_to '削除', "/questions/#{@question.id}", method: :delete %> | <% end %> <%= link_to 'TOPに戻る', questions_path %>
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。