clientとprojectというモデルがあり、
1対多の関係です。
一つのクライアントは複数のプロジェクトを持つといったものになります。
projectの追加をするとエラーが出ます。
form_withを利用しています。
createするとエラーが出て保存されないのを解消したいと考えています。
現状のコード
ruby
1########routes.rb######## 2Rails.application.routes.draw do 3 resources :clients do 4 resources :projects 5 end 6end 7 8########model######## 9#project.rb 10class Project < ApplicationRecord 11 belongs_to :client 12end 13 14 15#client.rb 16class Client < ApplicationRecord 17 has_many :projects, dependent: :destroy 18 accepts_nested_attributes_for :projects 19end 20
ruby
1########projects_controller.rb######## 2class ProjectsController < ApplicationController 3 before_action :set_project, only: [:show, :edit, :update, :destroy] 4 5 def new 6 @project = Project.new 7 @client = Client.find(params[:client_id]) 8 # binding.pry 9 end 10 11 def create 12 @project = Project.new(project_params) 13 respond_to do |format| 14 if @project.save 15 format.html { redirect_to "/", notice: '案件を追加しました。' } 16 format.json { render :show, status: :created, location: @project } 17 else 18 format.html { render :new } 19 format.json { render json: @project.errors, status: :unprocessable_entity } 20 end 21 end 22 end 23 24 private 25 # Use callbacks to share common setup or constraints between actions. 26 def set_project 27 @project = Project.find(params[:id]) 28 end 29 30 # Never trust parameters from the scary internet, only allow the white list through. 31 def project_params 32 params.require(:project).permit(:catering_day,:start_time,:end_time,:client_id) 33 end 34 35end 36
ruby
1<%= form_with(model: [@client , @project], local: true) do |f| %> 2 <%= f.date_field :catering_day,:class => "form-control",:id => "catering_day"%> 3 <%= f.time_field :start_time,:class => "form-control",:id => "start_time"%> 4 <%= f.time_field :end_time,:class => "form-control",:id => "end_time" %> 5 <%= f.submit nil,:class => "btn btn-primary mb-2" %> 6<% end %> 7#不要なcssやhtmlは省いてます。
症状
上記のキャプチャ画像のURLは
http://localhost:3000/clients/4/projects/new
です。
[create project]を押すと下記になります。
原因がわかる方ご教授お願いいたします。
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。