前提・実現したいこと
Ruby(Ruby on rails)で自己学習をかねてマッチングアプリを作っています。
プロフィール登録ページ(users#new)でform_withを用いてusers#createにparamsを送信できません。
発生している問題・エラーメッセージ
エラー発生がそもそも発生しておらず。 submit押下後にroot設定したページに移行してしまいます。 users#createアクションの最初にbinding.pryを配置するがcreateアクションに飛んでいない模様。
該当のソースコード
ruby
1new.html.erb 2 3<%= form_with model: @profile, url: users_path, id:'new_profile', class:'new_profile', local: true do |f| %> 4 <div class="form-box"> 5 <div class="form-group"> 6 <%= f.label :"■名前" %><br/> 7 <%= f.text_field :first_name, placeholder: " 性" %> 8 <%= f.text_field :last_name, placeholder: " 名" %> 9 </div> 10 11 <div class="form-group"> 12 <%= f.label :"■フリガナ" %><br /> 13 <%= f.text_field :first_name_kana, placeholder: " セイ" %> 14 <%= f.text_field :last_name_kana, placeholder: " メイ" %> 15 </div> 16 17 <div class="form-group"> 18 <%= f.label :"■生年月日" %><br/> 19 <%= f.text_field :birth_year, placeholder: " 年 (西暦)" %> 20 <%= f.text_field :birth_month, placeholder: " 月" %> 21 <%= f.text_field :birth_day, placeholder: " 日" %> 22 </div> 23 24 <div class="form-group"> 25 <%= f.label :"■自己紹介" %><br/> 26 <%= f.text_field :comment, placeholder: " 200文字以内" %> 27 </div> 28 29 <div class="form-group"> 30 <%= f.label :"■趣味" %><br/> 31 <%= f.text_field :hobby_id, placeholder: " 例) 趣味" %> 32 </div> 33 34 <div class="form-group"> 35 <%= f.label :"■仕事" %><br/> 36 <%= f.text_field :work_id, placeholder: " 例) 仕事" %> 37 </div> 38 39 <div><%= f.submit "プロフィール登録" ,class:"form-btn"%></div> 40 </div> 41 <% end %>
ruby
1users.controller.rb 2 3class UsersController < ApplicationController 4 5 def show 6 end 7 8 def new 9 @profile = Profile.new 10 @profile.profile_images.new 11 end 12 13 def create 14 @profile = Profile.new(profile_params) 15 @profile.save 16 end 17 18 private 19 20 def profile_params 21 params.require(:profile).permit(:first_name, :last_name, :first_name_kana, :last_name_kana, :birth_year, :birth_month, :birth_day, :comment, :hobby_id, :work_id, :profile_image, profile_images_attributes: [:profile_image]).merge(user_id: current_user.id) 22 end 23end 24
ruby
1routes.rb 2 3Rails.application.routes.draw do 4 devise_for :users, controllers: { 5 registrations: 'users/registrations' 6 } 7 8 resources :posts, only: :index 9 resources :users, only: [:show, :new, :create] 10 11 root to: "posts#index" 12end 13 14
試したこと
new.html.erbにbinding.pryをかけたところ、@profileのインスタンスが作成されていることは確認できました。
そもそもcreateアクションに飛んでいないのため、form_withのmethod,urlのどちらの誤りがあると考えたが
発見できず。(urlはrails routesでpathを再度確認)
補足情報(FW/ツールのバージョンなど)
ruby "2.5.1" Rails"5.2.4"
仮説ですが、deviseでusersテーブルを作成していたためusers.controllerになにかしら影響をあたえているのではないかと考えましたが、関連記事は見当たりませんでした。
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/05/04 10:15
2020/05/04 12:46