正常にバリデーションをかけたい!!
collection_check_boxesを使用した色変えシステムを作成しております。
チェックボックスの入力は正常に動作しますが、なにもチェックなしでsubmitボタンを押すと下記のエラーが発生します
ActionController::ParameterMissing in ProductsController#create
param is missing or the value is empty: product
(エラー画像も記載しております)
バリデーションを掛けているにも関わらず、何故値が空ですと言うエラーが発生するか分からないです。
もしわかる方が見えましたら、ご教示のほど、よろしくお願い致します。
試したこと
下記コードをmodel/product.rbに記述した
validates :terms_of_service, acceptance: true
validates :form, acceptance: true # acceptance # チェックボックスがオンになっているか
どれを試しても、正常にバリデーションがかけられない
エラーメッセージ
該当のソースコード
index.html.haml class ProductsController < ApplicationController def index @products = Product.last(1) @products.each do |product| head_color = product.head_color boy_color = product.boy_color leg_color = product.leg_color shoes_color = product.shoes_color gon.head_color = JSON.parse(head_color) gon.boy_color = JSON.parse(boy_color) gon.leg_color = JSON.parse(leg_color) gon.shoes_color = JSON.parse(shoes_color) end end def new @product = Product.new @Colors = Color.all end def create @product = Product.new(product_create_params) if @product.save redirect_to products_path else flash[:alert] = "配色を選択して下さい!" render :new end end def edit @product = Product.find(params[:id]) @Colors = Color.all end def update @product = Product.find(params[:id]) if @product.update(product_create_params) redirect_to products_path else flash[:alert] = "配色を選択して下さい!" redirect_to edit_product_path end end def show end private def product_create_params params.require(:product).permit(head_color:[], boy_color:[], leg_color:[], shoes_color:[]) end end
product.rb class Product < ApplicationRecord has_many :colors validates :head_color, presence: true validates :boy_color, presence: true validates :leg_color, presence: true validates :shoes_color, presence: true end
new.html.haml .main %h2.main_title 配色を選択して下さい = form_with model: @product, class: :form, local: true do |form| #form_with model: モデルクラスのインスタンス do |form| .main_new .main_errors = render 'error_message', locals: {products: @product} .head_color %label ヘッドカラー %span.form-require 必須 .select-wrap = form.collection_check_boxes :head_color, Color.all, :color_name, :color_display, include_hidden: false, class: "input-default" .upper_body-color %label ボディーカラー %span.form-require 必須 .select-wrap = form.collection_check_boxes :boy_color, Color.all, :color_name, :color_display, include_hidden: false, class: "input-default" .leg-color %label レッグカラー %span.form-require 必須 .select-wrap = form.collection_check_boxes :leg_color, Color.all, :color_name, :color_display, include_hidden: false, class: "input-default" .shose-color %label シューズカラー %span.form-require 必須 .select-wrap = form.collection_check_boxes :shoes_color, Color.all, :color_name, :color_display, include_hidden: false, class: "input-default" .post = form.submit '配色を登録する', class: :form_submit_bottun
補足情報(FW/ツールのバージョンなど)
開発言語 : Ruby/Ruby on Railsiデータベース : MySQL
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/05/28 15:01