form_withを使って値をpatchで送りupdateを行いたいです。
printでjuchustaff_paramsを出力すると更新後の値をformで送れてはいるようなのですが、その後のUPDATEでSQLが走りません。
Ruby
1Parameters: {"utf8"=>"✓", "authenticity_token"=>"FqMbNMh0P1oiEk0oiGUcWlDWzk8Qqu2jqwXqrh41T0p7vBAw8s+CcWcwqvMu31F6UP2+GycskA+Bris9XnzChg==", "juchu_staff"=>{"userid"=>"あああかか", "name"=>"いいい"}, "commit"=>"Update Juchu staff", "id"=>"7"} 2 JuchuStaff Load (0.3ms) SELECT "juchu_staffs".* FROM "juchu_staffs" WHERE "juchu_staffs"."id" = ? LIMIT ? [["id", 7], ["LIMIT", 1]]
Ruby
1<h1>Juchustaffs#edit</h1> 2<p>Find me in app/views/juchustaffs/edit.html.erb</p> 3<h1>編集画面</h1> 4<%= form_with model: @juchustaff, url: juchustaff_path(@juchustaff), local: true, method: :patch do |f| %> 5 <p> 6 <%= f.label :userid, "ユーザーID" %><br> 7 <%= f.text_field :userid %> 8 </p> 9 10 <p> 11 <%= f.label :name, "名前" %><br> 12 <%= f.text_field :name %> 13 </p> 14 15 <p> 16 <%= f.submit %> 17 </p> 18<% end %>
Ruby
1class JuchustaffsController < ApplicationController 2 def new 3 @juchustaff = JuchuStaff.new 4 end 5 6 def create 7 juchustaff = JuchuStaff.new(juchustaff_params) 8 if juchustaff.save 9 redirect_to juchustaffs_path #@articleはarticle_path(@article)と同義 10 else 11 #エラー時は再度、記事登録画面を表示させる 12 render :new 13 end 14 end 15 16 def show 17 @juchustaff = JuchuStaff.find(params[:id]) 18 19 end 20 21 def index 22 @juchustaffs = JuchuStaff.all 23 end 24 25 def edit 26 @juchustaff = JuchuStaff.find(params[:id]) 27 end 28 29 def update 30 @juchustaff = JuchuStaff.find(params[:id]) 31 print juchustaff_params 32 if @juchustaff.update(juchustaff_params) 33 redirect_to juchustaffs_path 34 else 35 render :edit 36 end 37 end 38 39 private 40 41 #ストロングパラメータでpermitに渡された値以外を受け取らないようにする 42 def juchustaff_params 43 params.permit(:userid,:name) 44 end 45end 46 47end 48
Ruby
1Rails.application.routes.draw do 2 root 'homes#top' 3 resource :user, only: [:new, :create, :show] 4 get 'login', to: "sessions#new" 5 post 'login', to: "sessions#create" 6 delete 'logout', to: "sessions#destroy" 7 resources :juchustaffs 8 # For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html 9end 10
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/08/13 07:18