前提・実現したいこと
ActiveHashを用いてviewに表示させたい
発生している問題・エラーメッセージ
NameError at /tweets/new
uninitialized constant #Class:0x00007fe52652add8::After_birth
該当のソースコード
new.html.erb
<div class="container pt-5 mt-5"> <div class= form-group> <%= bootstrap_form_with model: @tweet, local: true do |f|%> <div class="field"> <%= f.text_field :title %> </div> <div class= "field"> <%= f.text_area :text %> </div> <div class= "field"> <%= f.collection_select(:after_birth_id, AfterBirth.all, :id, :name, {}, {class:"genre-select"}) %> # After_birthからAfterBirthに変更 </div> <%= f.submit "投稿する" %> <% end %> </div> </div>
after_birth.rb ActiveHashモデル
class AfterBirth < ActiveHash::Bace # class After_birthからAfterBirthに変更 self.data = [ { id: 1, name: '--' }, { id: 2, name: '生後0ヶ月' }, { id: 3, name: '生後1ヶ月' }, { id: 4, name: '生後2ヶ月' }, { id: 5, name: '生後3ヶ月' }, { id: 6, name: '生後6ヶ月頃' }, { id: 7, name: '生後8ヶ月頃' }, { id: 8, name: '生後10ヶ月頃' }, { id: 9, name: '1歳' }, { id: 10, name: '1歳半' }, { id: 11, name: '2歳' }, { id: 12, name: '3歳' }, { id: 13, name: '4歳' }, { id: 14, name: '5歳' }, { id: 15, name: '6歳' }, { id: 16, name: '7歳以上' } ] include ActiveHash::Associations has_many :tweets end
tweetモデル
class Tweet < ApplicationRecord extend ActiveHash::Associations::ActiveRecordExtensions belongs_to :after_birth belongs_to :user validates :after_birth_id, numericality: { other_than: 1 } end
controller
class TweetsController < ApplicationController def index @tweets = Tweet.all end def new @tweet = Tweet.new end def create @tweet = Tweet.new(tweet_params) if @tweet.save redirect_to root_path else render :new end end private def tweet_params params.require(:tweet).permit(:title, :text, :after_birth_id, :image).merge(user_id: current_user.id) end end
試したこと
エラー内容を調べた結果、そんなClassないよと言われていると思うのですが,
ActiveHashで定義しているので何がいけないのかわかりません。
名前のスペルミスも確認しましたが間違っていないようでした
まだ初心者で、初めての質問ですが、解決できなくて1日経過してしまったので教えていただけるとありがたいです。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。