前提・実現したいこと
Ruby on Railsにて会員登録機能を実装中に以下のエラーが発生しました。
発生している問題・エラーメッセージ
NameError in HomeController#create uninitialized constant HomeController::User
該当のソースコード
home_controller.rb
1class HomeController < ApplicationController 2 def top 3 end 4 def login 5 end 6 def you 7 end 8 def create 9 @user = User.new 10 if @user.save 11 session[:user_id] = @user.user_id 12 flash[:notice] = "会員登録完了" 13 redirect_to("/") 14 else 15 reder("sinki") 16 flash.now[:alert] = '会員登録に失敗しました' 17 end 18 end 19end
補足情報
Windows 10 home
Ruby on rails 5.2.4
ruby 2.6.6
質問に不備や失礼があるかもしれませんがどうぞ宜しくお願いします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
退会済みユーザー
2020/05/06 00:01