前提・実現したいこと
クックパッドのようなアプリケーションを作っています。タイトルの通り、fields_forを使って、cookモデルとmaterialモデルの両方にデータを入れる1つのフォームを作りたいのですが、試行錯誤した結果エラーに悩まされています。
発生している問題・エラーメッセージ
ActionController::ParameterMissing in CookController#create param is missing or the value is empty: material
該当のソースコード
view
1= form_with model: @cook, url: cook_index_path, local: true do |f| 2 = f.text_field :title,placeholder: "タイトル" , class:"title" 3 = f.text_field :description, placeholder: "説明" , class:"description" 4 = f.fields_for @material, url: cook_index_path, local: true do |i| 5 = i.text_field :material1, placeholder: "食材1", class:"material1" 6 = f.submit "登録する"
migration
1class CreateCooks < ActiveRecord::Migration[5.2] 2 def change 3 create_table :cooks do |t| 4 t.string :title, null:false 5 t.text :description 6 7 t.timestamps 8 end 9 end 10end
migration
1class CreateMaterials < ActiveRecord::Migration[5.2] 2 def change 3 create_table :materials do |t| 4 t.string :material1, null: false 5 6 7 t.references :cook, index: true, foreign_key: true 8 9 t.timestamps 10 end 11 end 12end
controller
1class CookController < ApplicationController 2 def new 3 @cook = Cook.new 4 @material = Material.new 5 end 6 7 def create 8 Cook.create(cook_params) 9 Material.create(material_params) 10 end 11 12 def show 13 end 14 15 private 16 def cook_params 17 params.require(:cook).permit(:title, :description) 18 end 19 20 def material_params 21 params.require(:material).permit(:material1) 22 end 23end
model
1class Cook < ApplicationRecord 2 has_many :materials, dependent: :destroy 3 has_many :works, dependent: :destroy 4end
model
1class Material < ApplicationRecord 2 belongs_to :cook 3end
routes
1Rails.application.routes.draw do 2 devise_for :users 3 resources :cook, only:[:new, :create, :show] 4 resources :home, only: :index 5 root to: 'home#index' 6end
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/04/22 13:10
2020/04/23 03:39
2020/04/23 04:55
2020/04/23 13:28
2020/04/24 03:12