前提・実現したいこと
railsでカルテアプリを作ってます。
患者さんの観察項目を編集した後データの置き換えを行いたい。
置き換えがされず、新しくデータが作成されている。
発生している問題・エラーメッセージ
Routing Error No route matches [PATCH] "/patients/4/observations"
該当のソースコード
ruby
1~routes.rb~ 2Rails.application.routes.draw do 3 devise_for :users 4 get 'patients/index' 5 root to: "patients#index" 6 resources :users, only: [:edit, :update] 7 resources :patients, only: [:new, :create, :index, :show, :edit, :update] do 8 resources :observations, only: [:new, :create, :edit, :show, :update] 9 end 10end
ruby
1~observations_Controller.rb~ 2class ObservationsController < ApplicationController 3 before_action :set_patient, only: [:new, :create, :edit, :update, :show] 4 before_action :set_observation, only: [:edit, :update, :show] 5 6 def new 7 @observation = Observation.new 8 end 9 10 def create 11 @observation = Observation.new(observation_params) 12 if @observation.save # バリデーションをクリアした時 13 redirect_to patient_path(@patient) 14 else 15 render :new # バリデーションに弾かれた時 16 end 17 end 18 19 def update 20 if @observation.update(observation_params) # バリデーションをクリアした時 21 redirect_to patient_observation_path(@observation) 22 else 23 render :edit # バリデーションに弾かれた時 24 end 25 end 26 27 private 28 29 def observation_params 30 params.require(:observation).permit(:temperature, :pulse, :respiration, :high_blood_pressure, :low_blood_pressure, :spo2, :food_intake, 31 :water_intake, :excresion, :ex_amount, :atten_sound, :atten_part, :sputum, :cough, :sleep).merge(user_id: current_user.id, patient_id: params[:patient_id]) 32 end 33 34 def set_patient 35 @patient = Patient.find(params[:patient_id]) 36 end 37 38 def set_observation 39 @observation = Observation.find(params[:patient_id]) 40 end 41end
ruby
1~edit.html.erb~ 2<div class="item-show"> 3 <div class="item-box"> 4 <%= form_with model: @observation, url: "/patients/:patient_id/observations/:id(.:format)", method: :patch, local: true do |f| %> 5 <table class="detail-table"> 6 <tbody> 7 <tr> 8 #中身は省略 9 <th>観察記録保存</th> 10 <td><%= f.submit '反映', class: 'btn btn-primary btn-block' %></td> 11 </tr> 12 </tbody> 13 </table> 14 <% end %> 15</div>
~ルーティング〜 patient_observations POST /patients/:patient_id/observations(.:format) observations#create new_patient_observation GET /patients/:patient_id/observations/new(.:format) observations#new edit_patient_observation GET /patients/:patient_id/observations/:id/edit(.:format) observations#edit patient_observation GET /patients/:patient_id/observations/:id(.:format) observations#show PATCH /patients/:patient_id/observations/:id(.:format) observations#update PUT /patients/:patient_id/observations/:id(.:format) observations#update
試したこと
~edit.html.erb~ <%= form_with model: @observation, local: true do |f| %>
としてみるがno method errorが出るため、上記追記する。ルーティングのpatchでパスが無い事が原因でしょうか??
補足情報(FW/ツールのバージョンなど)
rails 6.0.0
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/09/09 11:23