userに、年月日のデータを持たせて作成したいです。
現在、f.date_select を使用してDBに保存させているのですが、"birthday(1i)"=>"2018" という感じで保存されていてエラーが発生してしまいます。
その為、to_iで変換しDate.newとして新しい型を作り保存させようと思ったのですが、これも,"birthday(1i)"=>"2018" で保存されていてエラーが起きてしまいます。
ストロングパラメーターでdate_selectを取得することは不可能なのですか?
ご教授願います。
エラー部分
"user"=>{"nickname"=>"テスト", "email"=>"aaa@a.com", "password"=>"[FILTERED]", "last_name"=>"田中", "first_name"=>"太郎", "last_name_kana"=>"タナカ", "first_name_kana"=>"タロウ"}, "birthday"=>{"birthday(1i)"=>"2018", "birthday(2i)"=>"3", "birthday(3i)"=>"7"}, "commit"=>"登録"} Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms) NoMethodError (undefined method `[]' for nil:NilClass):
コード
<%= form_with model: @user, local: true do |f| %> <%= f.label :ニックネーム %> <%= f.text_field :nickname %> <%= f.label :メール %> <%= f.text_field :email %> <%= f.label :パスワード %> <%= f.password_field :password %> <%= f.label :お名前 %> <%= f.text_field :last_name %> <%= f.text_field :first_name %> <%= f.label :お名前カナ %> <%= f.text_field :last_name_kana %> <%= f.text_field :first_name_kana %> <%= f.label :生年月日 %> <%= raw sprintf(f.date_select(:birthday, prefix:'birthday', prompt:"--",use_month_numbers:true, start_year:Time.now.year, end_year:1900, date_separator:'%s'),'年','月')+'日'%> <%= f.submit '登録' %> <% end %>
def new @user = User.new end def create params[:user][:birthday] = birthday_join @user = User.new(user_params) if @user.save redirect_to users_new_path else render 'new' end end private def user_params params.require(:user).permit(:nickname,:email,:password,:last_name,:first_name,:last_name_kana,:first_name_kana,:birthday) end def birthday_join date = params[:user][:birthday] Date.new date["birthday(1i)"].to_i,date["birthday(2i)"].to_i,date["birthday(3i)"].to_i end end
追記
変換部分である def birthday_join を削除してユーザー作成してみたところ、何故か birthdayカラムが存在しないことになっていました。
INSERT INTO `users` (`nickname`, `email`, `password_digest`, `last_name`, `first_name`, `last_name_kana`, `first_name_kana`, `created_at`, `updated_at`) VALUES ('テスト', 'aaa@a.com', '$2a$12$VPlEGtpIG1tuA/DT9cC4/e2seSf9BK7gVR9aoj3zY23kijAZcR7XS', '田中', '太郎', 'タナカ', 'タロウ', '2019-12-03 06:37:25', '2019-12-03 06:37:25')
きちんと入力もし、テーブルにもカラムがあ存在するのに何故か値が保存されません。原因部分が不明です。ご教授願います。
create_table "users", options: "ENGINE=InnoDB DEFAULT CHARSET=utf8", force: :cascade do |t| t.string "nickname", null: false t.string "email", null: false t.string "password_digest", null: false t.string "last_name", null: false t.string "first_name", null: false t.string "last_name_kana", null: false t.string "first_name_kana", null: false t.date "birthday" t.datetime "created_at", null: false t.datetime "updated_at", null: false end
def new @user = User.new end def create @user = User.new(user_params) if @user.save redirect_to users_path else render 'new' end end private def user_params params.require(:user).permit(:nickname,:email,:password,:last_name,:first_name,:last_name_kana,:first_name_kana,:birthday) end