前提・実現したいこと
Ruby on Railsで、自分のオリジナルアプリを作っています。
ユーザの新規登録ページでエラーが起きました。
エラーの原因と解決策が全くわかりません。ご教授お願いします。
発生している問題・エラーメッセージ
ユーザの新規登録ページで、以下のような内容で登録したところ、「Eメール」「Webサイト」「所在地」のフォームがエラーになってしまいます。
該当のソースコード
users/new.html.erb
Ruby
1<%= form_with(model: @user) do |f| %> 2 <%= render 'layouts/error_messages', model: f.object %> 3<% end %> 4 5<div class="text-center"> 6 <h1>新規登録</h1> 7</div> 8 9<div class="row"> 10 <div class="col-sm-6 offset-sm-3"> 11 12 <%= form_with(model: @user) do |f| %> 13 14 <div class="mb-3"> 15 <%= f.label :name, '名称' %> 16 <%= f.text_field :name, class: 'form-control' %> 17 </div> 18 19 <div class="mb-3"> 20 <%= f.label :email, 'Eメール' %> 21 <%= f.email_field :email, class: 'form-control' %> 22 </div> 23 24 <div class="mb-3"> 25 <%= f.label :email, '所在地' %> 26 <%= f.text_field :email, class: 'form-control' %> 27 </div> 28 29 <div class="mb-3"> 30 <%= f.label :email, 'Webサイト' %> 31 <%= f.text_field :email, class: 'form-control' %> 32 </div> 33 34 <div class="mb-3"> 35 <%= f.label :password, 'パスワード' %> 36 <%= f.password_field :password, class: 'form-control' %> 37 </div> 38 39 <div class="mb-3"> 40 <%= f.label :password_confirmation, 'パスワード再確認' %> 41 <%= f.password_field :password_confirmation, class: 'form-control' %> 42 </div> 43 44 <%= f.submit '登録', class: 'btn btn-primary w-100' %> 45 <% end %> 46 </div> 47</div>
users_controller.rb
Ruby
1class UsersController < ApplicationController 2 before_action :require_user_logged_in, only: [:show] 3 before_action :set_user, :only => [:show, :destroy] 4 5 def index 6 @pagy, @users = pagy(User.order(id: :desc), items: 25) 7 end 8 9 def show 10 @user = User.find(params[:id]) 11 end 12 13 def new 14 @user = User.new 15 end 16 17 def create 18 @user = User.new(user_params) 19 20 if @user.save 21 flash[:success] = 'ユーザを登録しました。' 22 redirect_to :root 23 else 24 flash.now[:danger] = 'ユーザの登録に失敗しました。' 25 render :new 26 end 27 end 28 29 def destroy 30 @user = User.find(params[:id]) 31 @user.destroy 32 33 flash[:notice] = 'ユーザーを削除しました。' 34 redirect_to :root #削除に成功すればrootページに戻る 35 end 36 37 private 38 39 def user_params 40 params.require(:user).permit(:name, :email, :address, :web_site, :password, :password_confirmation) 41 end 42 43 def set_user 44 @user = User.find_by(:id => params[:id]) 45 end 46end
user.rb
Ruby
1class User < ApplicationRecord 2 before_save { self.email.downcase! } 3 4 validates :name, presence: true, length: { maximum: 50 } 5 validates :address, presence:true, length: { maximum: 50 } 6 validates :web_site, presence:true, length: { maximum: 255 } 7 validates :email, presence: true, length: { maximum: 255 }, 8 format: { with: /\A[\w+\-.]+@[a-z\d\-.]+.[a-z]+\z/i }, 9 uniqueness: { case_sensitive: false } 10 has_secure_password 11 12 has_many :posts, :dependent => :destroy 13 # 退会ユーザーに紐づくプロジェクトも削除する 14 has_many :projects, :dependent => :destroy 15 16 has_many :projects 17end
マイグレーションファイル
Ruby
1class CreateUsers < ActiveRecord::Migration[6.1] 2 def change 3 create_table :users do |t| 4 t.string :name 5 t.string :email 6 t.string :address 7 t.string :web_site 8 t.string :password_digest 9 10 t.timestamps 11 end 12 end 13end 14
試したこと
モデルのバリデーションが間違っていると思ったが、間違っていなかった。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。