前提・実現したいこと
バリデーションを設定したらエラーになってしまう。
スコアを管理するアプリでスコアを送信するときに空欄で送信できないようにするためにバリデーションを設定しました。登録はできていませんがエラーになります。
どのように解決できるでしょうか?教えてもらえると幸いです。
発生している問題・エラーメッセージ
バリデーションvalidates :score, presence: true, format: { with: VALID_SCORE_REGEX }
を記述して空欄で送信した場合のエラー
errer
1ArgumentError in Scores#create 2'nil' is not an ActiveModel-compatible object. It must implement :to_partial_path.
該当のソースコード
score.rb
ruby
1class Score < ApplicationRecord 2 belongs_to :user 3 VALID_SCORE_REGEX = /\A(?:[1-9][0-9]{2,2}|0)(?:.[0-9]{1,1})?\z/ #修正した箇所 4 validates_inclusion_of :score_before_type_cast, presence: true, in:400..650, format: { with: VALID_SCORE_REGEX } 5end
index.html.erb
ruby
1<%= form_with model: @score, class: 'form', local: true do |f| %> 2<%= render 'shared/error_messages', model: f.object %> <% #追記した箇所 %> 3 <div class="form-input"> 4 <%= f.number_field :score, step: "0.1", class: 'form-score', placeholder: 'type a score' %> 5 <%= f.submit '送信', class: 'form-submit' %> 6 </div> 7<% end %> 8 9<%= javascript_include_tag "//www.google.com/jsapi" %> 10<%= line_chart @chart, points: false, series: false, curve: false, discrete: true, xtitle: "日付", ytitle: "スコア", width: "100%", height: "500px", decimal: ",", min: 400, max: 654 %> 11 12<% unless @scores.blank?%> 13<div class="score_destroy"> 14<div class="score_destroy_solo"> 15 <%= link_to "一番新しいスコアを削除", score_path(@scores.ids, @scores.ids), method: :delete %> 16 </div> 17 <div class="score_destroy_all"> 18 <%= link_to "全てのスコアを削除", score_path(@scores.ids, all: true), method: :delete %> 19 </div> 20</div> 21<% end %> 22 23<div id="score_b"> 24 <%= render @scores%> 25</div> 26
schema.rb
ruby
1ActiveRecord::Schema.define(version: 2021_06_16_015118) do 2 3 create_table "scores", options: "ENGINE=InnoDB DEFAULT CHARSET=utf8", force: :cascade do |t| 4 t.bigint "user_id" 5 t.decimal "score", precision: 4, scale: 1, null: false 6 t.decimal "score_avg", precision: 3, scale: 1 7 t.datetime "created_at", precision: 6, null: false 8 t.datetime "updated_at", precision: 6, null: false 9 t.index ["user_id"], name: "index_scores_on_user_id" 10 end 11 12 create_table "users", options: "ENGINE=InnoDB DEFAULT CHARSET=utf8", force: :cascade do |t| 13 t.string "email", default: "", null: false 14 t.string "encrypted_password", default: "", null: false 15 t.string "nickname", default: "", null: false 16 t.string "reset_password_token" 17 t.datetime "reset_password_sent_at" 18 t.datetime "remember_created_at" 19 t.datetime "created_at", precision: 6, null: false 20 t.datetime "updated_at", precision: 6, null: false 21 t.index ["email"], name: "index_users_on_email", unique: true 22 t.index ["reset_password_token"], name: "index_users_on_reset_password_token", unique: true 23 end 24 25 add_foreign_key "scores", "users" 26end
shared/_error_messages.html.erb
ruby
1<% if model.errors.any? %> 2<div class="error-alert"> 3 <ul> 4 <% model.errors.full_messages.each do |message| %> 5 <li class='error-message'><%= message %></li> 6 <% end %> 7 </ul> 8</div> 9<% end %>
試したこと
バリデーションを外した状態では空欄で送信すると上記エラーが出て、数字を入れた状態で送信するとエラーは出ません。
バリデーションをした状態で送信すると、空欄でも数字を入力してもエラーになります。
サーバーの再起動もしました。
調べてもエラーを表示する方法ばかりヒットします。
補足情報(FW/ツールのバージョンなど)
ruby 2.6.5
rails 6.0.4
mysql
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/06/21 09:24
2021/06/21 09:29
2021/06/21 23:58
2021/06/22 01:40
2021/06/22 02:08