前提・実現したいこと
簡単な画像投稿アプリを作っています。
画像を投稿する際に下記のようなエラーが出ます。
発生している問題・エラーメッセージ
該当のソースコード
ruby
1app>controllers>prototypes_controller.rb 2 3class PrototypesController < ApplicationController 4 before_action :move_to_index, except: [:index, :show] 5 def index 6 7 end 8 9 def new 10 @prototype = Prototype.new 11 end 12 13 def create 14 @prototype = Prototype.new 15 @prototype.create(prototype_params) 16 if @prototype.save 17 redirect_to prototypes_path 18 else 19 render :form 20 end 21 end 22 23 private 24 25 def prototype_params 26 params.require(:prototype).permit(:image, :title, :catch_copy, :concept,).merge(user_id: current_user.id) 27 end 28 29 def move_to_index 30 unless user_signed_in? 31 redirect_to action: :index 32 end 33 end 34 35end 36
ruby
1app>models>prototype.rb 2 3class Prototype < ApplicationRecord 4 validates :title, presence: true 5 validates :catch_copy, presence: true 6 validates :concept, presence: true 7 validates :image, presence: true 8 9 belongs_to :user 10 has_one_attached :image 11end 12
ruby
1app>views>prototypes>_form/html/erb 2 3<%= form_with(model: prototype, local: true) do |f| %> <div class="field"> 4 <%= f.label :title, "プロトタイプの名称" %><br /> 5 <%= f.text_field :title %> 6 </div> 7 8 <div class="field"> 9 <%= f.label :catch_copy, "キャッチコピー" %><br /> 10 <%= f.text_area :catch_copy, class: :form__text %> 11 </div> 12 13 <div class="field"> 14 <%= f.label :concept, "コンセプト" %><br /> 15 <%= f.text_area :concept, class: :form__text %> 16 </div> 17 18 <div class="field"> 19 <%= f.label :image, "プロトタイプの画像" %><br /> 20 <%= f.file_field :image %> 21 </div> 22 23 <div class="actions"> 24 <%= f.submit "保存する", class: :form__btn %> 25 </div> 26<% end %>
ruby
1app>view>prototypes>new.html.erb 2 3<div class="main"> 4 <div class="inner"> 5 <div class="form__wrapper"> 6 <h2 class="page-heading">新規プロトタイプ投稿</h2> 7 <%# 部分テンプレートでフォームを表示する %> 8 <%= render partial: "form", locals: { prototype: @prototype } %> 9 </div> 10 </div> 11</div>
ruby
1db>migrate 2 3class CreatePrototypes < ActiveRecord::Migration[6.0] 4 def change 5 create_table :prototypes do |t| 6 t.string :title, null: false 7 t.text :catch_copy, null: false 8 t.text :concept, null: false 9 t.references :user, foreign_key: true 10 t.timestamps 11 end 12 end 13end
試したこと
1 controllerでスペルミスや全角スペースになっていないか。
2 nameが存在しないというエラーだったので、カラムの記述を確認したがprototypeテーブルにnameというカラムは、元々存在しない。usersテーブルとactive_storage_attachmentsにはnameカラムは存在した。
補足情報(FW/ツールのバージョンなど)
macOS 10.15.6
ruby 2.6.5p114
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/11/13 10:20