前提・実現したいこと
Rails
で投稿機能を実装中なのですが、うまく実装できず詰まっています。
投稿しようとするとsave
されずrender :new
が実行されてしまいます。
Prototype
モデルのbelongs_to :User
にoptional: true
をつけることで
とりあえず投稿することができたものの、それ以降の実装でid
との紐付けができず
投稿者の名前を表示することができませんでした。
なぜid
やUser
が空になってしまうのかが分かりません。
ご教示いただけたら幸いです。
発生している問題・エラーメッセージ
binding.pry
でチェックした結果
10: def create 11: @prototype = Prototype.new(prototype_params) 12: if @prototype.save 13: redirect_to root_path 14: else => 15: binding.pry 16: render :new 17: end 18: end [1] pry(#<PrototypesController>)> @prototype.errors => #<ActiveModel::Errors:0x00007fe0a6fdc5a8 @base= #<Prototype:0x00007fe0a6fde100 id: nil, title: "test", catch_copy: "hoge", concept: "hogehogehoge", user_id: 2, created_at: nil, updated_at: nil>, @details={:User=>[{:error=>:blank}]}, @messages={:User=>["must exist"]}>
if @prototype.save! ← !をつけて実行した結果です。(optionalは消しています)
該当のソースコード
prototypes_controller.rb
Ruby
1class PrototypesController < ApplicationController 2 def index 3 @prototypes = Prototype.all 4 end 5 6 def new 7 @prototype = Prototype.new 8 end 9 10 def create 11 @prototype = Prototype.new(prototype_params) 12 if @prototype.save 13 redirect_to root_path 14 else 15 render :new 16 end 17 end 18 19 def show 20 # @prototype = Prototype.find(params[:id]) 21 end 22 23 private 24 def prototype_params 25 params.require(:prototype).permit(:title, :catch_copy, :concept, :image).merge(user_id: current_user.id) 26 end 27end
prototype.rb
Ruby
1class Prototype < ApplicationRecord 2 belongs_to :User 3 has_one_attached :image 4 5 validates :title, presence: true 6 validates :catch_copy, presence: true 7 validates :concept, presence: true 8 validates :image, presence: true 9end
user.rb
Ruby
1class User < ApplicationRecord 2 # Include default devise modules. Others available are: 3 # :confirmable, :lockable, :timeoutable, :trackable and :omniauthable 4 devise :database_authenticatable, :registerable, 5 :recoverable, :rememberable, :validatable 6 7 validates :name, presence: true 8 validates :profile, presence: true 9 validates :occupation, presence: true 10 validates :position, presence: true 11 12 has_many :prototypes 13end
new.html.erb
Ruby
1<div class="main"> 2 <div class="inner"> 3 <div class="form__wrapper"> 4 <h2 class="page-heading">新規プロトタイプ投稿</h2> 5 <%= render partial: 'form' %> 6 </div> 7 </div> 8</div>
_form.html.erb
Ruby
1<%= form_with(model: @prototype, local: true) do |f| %> 2 <div class="field"> 3 <%= f.label :title, "プロトタイプの名称" %><br /> 4 <%= f.text_field :title %> 5 </div> 6 7 <div class="field"> 8 <%= f.label :catch_copy, "キャッチコピー" %><br /> 9 <%= f.text_area :catch_copy, class: :form__text %> 10 </div> 11 12 <div class="field"> 13 <%= f.label :concept, "コンセプト" %><br /> 14 <%= f.text_area :concept, class: :form__text %> 15 </div> 16 17 <div class="field"> 18 <%= f.label :image, "プロトタイプの画像" %><br /> 19 <%= f.file_field :image %> 20 </div> 21 22 <div class="actions"> 23 <%= f.submit "保存する", class: :form__btn %> 24 </div> 25<% end %>
Migration
Ruby
1class CreatePrototypes < ActiveRecord::Migration[6.0] 2 def change 3 create_table :prototypes do |t| 4 t.string :title, null: false 5 t.text :catch_copy, null: false 6 t.text :concept, null: false 7 t.references :user, foreign_key: true 8 t.timestamps 9 end 10 end 11end
回答1件
あなたの回答
tips
プレビュー