前提・実現したいこと
スコア管理アプリを作成しています。
送信フォームからスコアを送信するとエラーになります。
送信したら保存できるようにしたいです。
TOPページを作成してroot_pathを変え、各viewなど修正したあとに発生しました。
以前はちゃんと機能していました。
scores/_score.thml.erb
ファイルはちゃんとあります。
発生している問題・エラーメッセージ
ArgumentError in Scores#create 'nil' is not an ActiveModel-compatible object. It must implement :to_partial_path. <%= render @scores%> がエラーになります。
該当のソースコード
コントローラー
ruby
1class ScoresController < ApplicationController 2 before_action :authenticate_user! 3 4 5 def index 6 @score = Score.new 7 @scores = current_user.scores.order("created_at DESC") 8 @chart = current_user.scores.pluck(:created_at, :score) 9 end 10 11 def create 12 @score = Score.new(scores_params) 13 if @score.save 14 redirect_to scores_path 15 else 16 render :index 17 end 18 end 19 20 21 def destroy 22 if params[:all].present? 23 @score = Score.where(params[:id]) 24 current_user.scores.destroy_all 25 else 26 @score = Score.find(params[:id]) 27 @score.destroy 28 end 29 redirect_to scores_path 30 31 end 32 33 private 34 35 def scores_params 36 params.require(:score).permit(:score).merge(user_id: current_user.id) 37 end 38end
ビュー(ここの一番下がエラー)
ruby
1<%= form_with model: @score, class: 'form', local: true do |f| %> 2 <div class="form-input"> 3 <%= f.number_field :score, step: "0.1", class: 'form-score', placeholder: 'type a score' %> 4 <%= f.submit '送信', class: 'form-submit' %> 5 </div> 6<% end %> 7 8<%= javascript_include_tag "//www.google.com/jsapi" %> 9<%= line_chart @chart, points: false, series: false, curve: false, discrete: true, xtitle: "日付", ytitle: "スコア", width: "100%", height: "500px", decimal: ",", min: 400, max: 654 %> 10 11<% unless @scores.blank?%> 12<div class="score_destroy"> 13<div class="score_destroy_solo"> 14 <%= link_to "一番新しいスコアを削除", score_path(@scores.ids, @scores.ids), method: :delete %> 15 </div> 16 <div class="score_destroy_all"> 17 <%= link_to "全てのスコアを削除", score_path(@scores.ids, all: true), method: :delete %> 18 </div> 19</div> 20<% end %> 21 22<div id="score_b"> 23 <%= render @scores%> 24</div>
試したこと
binding.pryで処理を一旦止めてみた結果、createは動いていてパラメーターも確認しましたところちゃんとデータは送れています。でもsaveまで行かない状況です。
補足情報(FW/ツールのバージョンなど)
ruby 2.6.5
rails 6.0.4
mysql
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。