前提・実現したいこと
Ruby on Railsの勉強でオリジナルのWebアプリを作成しています。
ユーザ情報(name,email,password)を登録するuserテーブルとプロフィール(age,birthplace,introduction)を登録するprofileテーブルを分けているんですが、ユーザ登録時はユーザ情報のみで登録しログインしてマイページを表示したいです。
発生している問題・エラーメッセージ
ユーザ登録時、ユーザ情報のみで登録は出来るが、ログインしてマイページを表示すると下記のエラーがでる NoMethodError in Users#show undefined method `age' for nil:NilClass
該当のソースコード
models/users.rb
class User < ApplicationRecord before_save { self.email.downcase! } validates :name, presence: true, length: { maximum: 50 } validates :email, presence: true, length: { maximum: 100 }, format: { with: /\A[\w+\-.]+@[a-z\d\-.]+.[a-z]+\z/i }, uniqueness: { case_sensitive: false } validates :password, length: { minimum: 8 }, on: :create has_secure_password has_one :profile, dependent: :destroy delegate :age, :birthplace, :introduction, to: :profile, allow_nil: true
models/profile.rb
class Profile < ApplicationRecord belongs_to :user validates :age, length: { maximum: 10 } validates :birthplace, length: { maximum: 100 } validates :introduction, length: { maximum: 200 }
users_controller.rb
def new @user = User.new end def create @user = User.new(user_params) if @user.save flash[:success] = 'ユーザを登録しました' redirect_to @user else flash[:danger] = 'ユーザ登録に失敗しました' render :new end end
users/show.html.erb
<div class="card"> <div class="card-header"> <h3><%= @user.name %> <img class="rounded-circle img-fluid" <%= image_tag @user.image.url if @user.image? %></h3> </div> <div class="card-body"> <div> <p>年齢</p> <%= @user.profile.age %> <p>出身地</p> <%= @user.profile.birthplace %> <p>自己紹介</p> <%= @user.profile.introduction %> </div> </div> </div>
試したこと
validates :age, length: { maximum: 10 }, allow_nil: true
validates :birthplace, length: { maximum: 100 }, allow_nil: true
validates :introduction, length: { maximum: 200 }, allow_nil: true
profileのバリデーションにallow_nil:trueをつけてみたが、変化なし
補足情報(FW/ツールのバージョンなど)
rails -v 5.2.4.3
cloud9
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/07/12 12:34