#解決したいこと
現在、simple_calendarを導入し、練習内容が投稿できるページを作り、練習を投稿すると、カレンダーにユーザー名が表示されて、カレンダーに表示されたユーザー名をクリックすると、投稿者ならば、投稿した情報を編集することが出来るようにコードを書いております。
カレンダーに表示されたユーザー名をクリックして情報を編集することが出来るのですが、なぜかクリックしていない他の投稿までも変更されて、その日付に集中してしまうというエラーが発生しております。
おそらく、trainings#editにある、form_withの送信先に問題があるのでは無いかと思います。
(updateアクションがうまく行っていないため)
特定したデータだけでなく、全データを更新してしまうため、idをその特定のidに指定すれば良いかと考えているのですが、どのように記述を変更したらよろしいでしょうか?
お手数ですが、ご回答いただければと存じます。
trainings#editのコード
<h1>練習内容</h1> <div class="parent"> <%= form_with(model: @training,id: 'new_training', class: 'new_training', local: true) do |f| %> <div class="field"> <%= f.label :日付を選択, class: 'date_lavel' %> <%= f.date_field :date, class: 'select_date' %> </div> <div class="field"> <%= f.label :"練習メニュー" %> <br> <%= f.text_area :training_menu, autofocus: true %> </div> <div class="field"> <%= f.label :"目的" %><br> <%= f.text_area :purpose, autofocus: true %> </div> <div class="field"> <%= f.label :"反省" %><br> <%= f.text_area :introspection, autofocus: true %> </div> <div class="register_actions"> <div class="actions"> <%= f.submit "変更" %> </div> <div class="field"> <%= link_to '削除', training_path, method: :delete %> </div> </div> <% end %> <div class="comment_contents"> <div class="container"> <% if current_user %> <%= form_with(model: [@training, @comment], local: true) do |f| %> <%= f.text_area :text, placeholder: "コメントする", rows: "2" %><br> <div class="submit_btn"> <%= f.submit "SEND" %> </div> <% end %> <% end %> <div class="comments"> <div class=comment_title> <h4><コメント一覧></h4> </div> <% if @comments %> <% @comments.each do |comment| %> <p> <strong><%= comment.user.name %>:</strong> <%= comment.text %> </p> <% end %> <% end %> </div> </div> </div> </div>
trainings#controllerの記述
class TrainingsController < ApplicationController before_action :comment_set, only: [:edit, :show] def create Training.create(training_params) redirect_to '/' end def update @training = Training.find(params[:id]) Training.update(update_training_params) end def destroy training = Training.find(params[:id]) if training.user_id == current_user.id training.destroy redirect_to '/' end end private def training_params params.permit(:date, :training_menu, :purpose, :introspection).merge(user_id: current_user.id) end def update_training_params params.require(:training).permit(:date, :training_menu, :purpose, :introspection).merge(user_id: current_user.id) end def comment_set @training = Training.find(params[:id]) @comment = Comment.new @comments = @training.comments.includes(:user) end end
以上になります。
どなたかお力頂けますようよろしくお願い申し上げます。
回答1件
あなたの回答
tips
プレビュー