date_selectを使って日付を入力し、データベースに保存したいのですができません。
コントローラーのcreateの部分にbinding.pryをかけてparamsの中身をみてみると、
=> <ActionController::Parameters {"play_date(1i)"=>"2021", "play_date(2i)"=>"10", "play_date(3i)"=>"24", "price"=>"20000", "score"=>"120", "drive_id"=>"2"
このようにデータは送られてはいます。
controller def new @golf = Golf.new end def create binding.pry @golf = Golf.new(golf_params) if @golf.save redirect_to root_path else render :new end end def show end 〜中略〜 private def golf_params params.require(:golf).permit(:play_date, :price, :score, :drive_id, :course_name, :prefecture_id, :meeting_time_id, :title, :introduction, :image).merge(user_id: current_user.id) end def ensure_current_user golf = Golf.find(params[:id]) if golf.user.id != current_user.id redirect_to action: :index end end def find_golf_params @golf = Golf.find(params[:id]) end
view <div class="weight-bold-text">日時</div> <div class="form"> <div class="weight-bold-text"> 日付 <span class="indispensable">必須</span> </div> <%= f.date_select :play_date, class:"select-box", id:"golf-play-date" %>
マイグレーションファイル class CreateGolves < ActiveRecord::Migration[6.0] def change create_table :golves do |t| t.string :title, null: false t.text :introduction, null: false t.date :play_date, null: false t.integer :meeting_time_id, null: false t.integer :prefecture_id, null: false t.string :course_name t.integer :drive_id, null: false t.integer :price, null: false t.references :user, foreign_key: true t.timestamps end end end
他のデータは保存されて、表示されるのですが、日付だけが保存できていない状態です。。。
よろしくお願い致しますm(__)m
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。