ご回答いただけるとありがたいです。よろしくお願いします!
実現したいこと
date_selectを用いて入力した日付を「2020年2月12日」と表示させたいです。
usersテーブルにbirthdayカラムを用意しています。型はdateです。
該当のソースコード
migration
1#users 2(省略) 3t.string :nickname, null: false 4 t.string :user_name, null: false, unique: true 5 t.string :introduction 6 t.integer :prefecture_id 7 t.date :birthday 8 t.string :email, null: false, default: "", unique: true 9 t.string :encrypted_password, null: false, default: "" 10(省略)
controller
1#users 2class UsersController < ApplicationController 3 before_action :set_user, only: [:show, :edit, :update] 4 5 def show 6 @contents = @user.contents.order("created_at DESC").includes([:rich_text_question]) 7 end 8 9 def edit 10 end 11 12 def update 13 if @user.update(user_params) 14 redirect_to user_path(current_user) 15 else 16 render :edit 17 end 18 end 19 20 private 21 22 def set_user 23 @user = User.find(params[:id]) 24 end 25 26 def user_params 27 params.require(:user).permit(:nickname, :user_name, :introduction, :prefecture_id, :birthday, :email) 28 end 29 30end
views
1#users/edit 2(省略) 3<div class="user-edit-field birthday-input"> 4 <%= f.label :birthday %><br> 5 <%= raw sprintf( 6 f.date_select( 7 :birthday, 8 use_month_numbers: true, 9 include_blank: true, 10 start_year: 2000, 11 end_year: (Time.now.year - 5), 12 date_separator: '%s'), 13 "年 ", "月 ") + "日 " %> 14</div> 15(省略) 16※誕生日はユーザー登録の時には入力せず、ユーザー編集ページでのみ設定可能にしています。
views
1#users/show 2(省略) 3<%= "生年月日 >> #{@user.birthday}" %> 4(省略)
###現状
ユーザー編集ページで「2020」年「2」月「12」日と選ぶと、birthdayカラムには2020-2-12と保存されます。
@user.birthdayで表示させると、「生年月日 >> 2020-2-12」と表示されます。
これを「2020年2月12日」というように表示させたいです。
###調べたこと
Railsドキュメント
などで調べましたが、入力方法しか載っておらず、表示変更の方法が載っている記事を見つけることができませんでした。
###試したこと
<%= @user.birthday.gsub!("-", "年") %>
として無理矢理変えてみようとしましたが、
undefined method `gsub!' for Sat, 01 Jan 2000:Date
というエラーが出ました。
ActiveHashを用いて、年月日それぞれのカラムとモデルを用意して、実装する方法が思い浮かんではいますが、date_selectを用いて実装できる方法があれば教えていただきたいです。
以上になります。ご助言いただけると幸いです。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。