前提・実現したいこと
refileを使って投稿を使用とすると
undefined method `great_image_attachment_definition' for nil:NilClass が発生する
発生している問題・エラーメッセージ
refileを使って画像投稿機を使おうとすると
NoMethodError
undefined method `great_image_attachment_definition' for nil:NilClass
※エラー箇所
~greats/new.html.erb~
<td><%= f.attachment_field :great_image, placeholder: "イメージ" %></td>
~greats/new.html~
<div class="container"> <div class="row"> <div class="col-md-8"> <%= form_with model: @great, url:'/greats', local:true do |f| %> <table class="table table-borderless mt-5"> <tbody> <tr> <td>イメージ</td> <td><%= f.attachment_field :great_image, placeholder: "イメージ" %></td> </tr> <tr> <td>偉人名</td> <td><%= f.text_field :name, class:"form-control" %></td> </tr> <div class="form-group"> <tr> <td>ジャンルタグ</td> <td><%= f.text_field :tag_ids, class:"form-control col-md-6", id:'tag_ids'%></td> </tr> </div> <tr> <td>見出し</td> <td><%= f.text_area :head, class:"form-control" %></td> </tr> <tr> <td>名言</td> <td><%= f.text_field :word, class:"form-control" %></td> </tr> <tr> <td>偉人紹介</td> <td><%= f.text_area :topic, class:"form-control" %></td> </tr> <tr> <td>どんな人におすすめですか?</td> <td><%= f.text_area :recommend, class:"form-control" %></td> </tr> </tbody> <tr> <td></td> <td><%= f.submit "投稿する", class:"btn btn-outline-secondary" %></td> </tr> </table> <% end %> </div> </div> </div>
~great.rb~
class Great < ApplicationRecord belongs_to :user has_many :tag_relationships, dependent: :destroy has_many :tags, through: :tag_relationships attachment :great_image end
~greats_controller.rb~
class GreatsController < ApplicationController def new @great = Great.new end def create great = Great.new(great_params) if great.save redirect_to great_path(great.id) else render 'new' end end def index @greats = Great.all end def show @great = Great.find(params[:id]) end def edit @great = Great.find(params[:id]) end def update great = great.find(params[:id]) great.update(great_params) redirect_to great_path(great.id) end def destroy great = great.find(paramas[:id]) great.destroy redirect_to greats_path end private def great_params params.require(:great).permit(:great_image, :name, :word, :tag_id, :head, :topic, :recommend) end end
~schema.rb(該当箇所抜粋)~
create_table "greats", force: :cascade do |t| t.integer "user_id", null: false t.integer "tag_id", null: false t.string "name", null: false t.text "topic", null: false t.string "recommend", null: false t.string "great_image_id", null: false t.string "head", null: false t.string "word", null: false t.datetime "created_at", null: false t.datetime "updated_at", null: false t.index ["tag_id"], name: "index_greats_on_tag_id" t.index ["user_id"], name: "index_greats_on_user_id" end
ここに言語名を入力
ruby on rails
### 試したこと ・テーブルの記述を変更してみる ・refileを使ってユーザーのプロフィールを編集することができているので記述の比較 ・MVCの名称を変更する 旧:greatmen 新:greats ・モデル(greats.rb)のattachment 許可に記述ミスはないかの確認 ### 補足情報(FW/ツールのバージョンなど) ruby '2.6.3' ~使用中Gem(該当しそうな箇所)~ gem 'rails', '~> 5.2.5' gem "refile", require: "refile/rails", github: 'manfe/refile' gem "refile-mini_magick" gem 'sqlite3'
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。