問題点
deviseを用いた新規登録操作時に必要な値が無かった場合、バリデーションにより操作を中断し
入力画面にエラー文を表示させたいが正常に動作していない。
問題があると思われるMVCと
これがdeviseによるUserモデル
ruby
1class User < ApplicationRecord 2 # Include default devise modules. Others available are: 3 # :confirmable, :lockable, :timeoutable, :trackable and :omniauthable 4 devise :database_authenticatable, :registerable, 5 :recoverable, :rememberable, :validatable 6 7 has_one_attached :image 8 has_many :articles, dependent: :destroy 9 has_many :comments, dependent: :destroy 10 11 with_options presence: true do 12 validates :nickname, :image 13 end 14 15 validates :nickname, length: { in: 1..20, message: '指定された文字数を満たしていません' } 16 17 PASSWORD_REGEX = /\A(?=.*?[a-z])(?=.*[\d])[a-z\d]{6,20}+\z/i.freeze 18 validates_format_of :password, with: PASSWORD_REGEX, on: :create 19 20end
こちらが新規登録画面のView
ruby
1<%= render 'shared/header' %> 2 3<h2>新規登録フォーム</h2> 4 5<div class="wrapper"> 6 <%= form_with model: @user, url: user_registration_path, class: "sign-up-form", id: 'form' do |f| %> 7 <%= render "shared/error_messages", model: f.object %> 8 9 <div class="field user-icon-registration" id="preview-container"> 10 <%= f.label :image, 'ユーザーアイコン', class: "label-name" %><span class="caution-text"> ※必須</span> 11 <%= f.file_field :image, class: "image-form" %> 12 <div id="setting-image"> 13 <%= image_tag 'default_icon', id: 'preview-icon' %> 14 </div> 15 </div> 16 17
そしてControllerになります。
deviseのコントローラーは直接手を加えておらず、application.controllerへの記述によるストロングパラメーターを設定しているだけです。
ruby
1class ApplicationController < ActionController::Base 2 before_action :configure_permitted_parameters, if: :devise_controller? 3 4 private 5 def configure_permitted_parameters 6 devise_parameter_sanitizer.permit(:sign_up, keys: [:nickname, :image, :introduction]) 7 end 8end
問題解決のためにした事
viewのパスを確認し、rails routesと比較しても存在するパスであることは確認済みです。
また同じモデルを使用するユーザー情報編集画面のエラーハンドリングを確認したところ正常に動作していることを確認しています。
上記画像の様にバリデーションに引っかかった場合rollbackが発生しオブジェクトを返す動作を行うはずなのですが。
新規登録のために送信ボタンを押しても処理が行われておりません。
初学者なため認識が甘いところがあるかと思いまずが、回答の程宜しくお願いします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。