前提・実現したいこと
ActiveHashが機能しない。
データを投稿する為にActiveHashを導入してみたがエラーが起こる
発生している問題・エラーメッセージ
エラーメッセージ undefined method `all' for ActionView::Helpers::TextHelper::Cycle:Class [エラー画像](https://gyazo.com/4c7dc31e08b18cdae5920a428982d362)
該当のソースコード
routines/new.html
ruby
1<div class="routines-new"> 2 <h3>ルーティンワークを登録しよう</h3> 3 <%= form_with model: @routine, url:routines_path, local: true do |form| %> 4 <%= form.text_field :content, placeholder: "タイトル" %> 5 <%= form.collection_select(:cycle_id, Cycle.all, :id, :name, {}, {class:"cycle-select"} ) %> 6 <%= form.text_field :how_many, placeholder: "回数" %> 7 <%= form.submit "登録" %> 8 <% end %> 9</div>v
作成したmodelのActiveHash
ruby
1class Cycle < ActiveHash::Base 2 3 self.data = [ 4 { id: 1, name: '---' }, 5 { id: 2, name: '月1' }, 6 { id: 3, name: '月2' }, 7 { id: 4, name: '月3' }, 8 { id: 5, name: '週1' }, 9 { id: 6, name: '週2' }, 10 { id: 7, name: '週3' }, 11 { id: 8, name: '週4' }, 12 { id: 9, name: '週5' }, 13 { id: 10, name: '毎日' }, 14 ] 15 16 include ActiveHash::Associations 17 has_many :routine 18 19end
関連するmodel routine.rb
ruby
1class Routine < ApplicationRecord 2 extend ActiveHash::Associations::ActiveRecordExtensions 3 belongs_to :cycle 4 5 validates :content, :text, presence: true 6 7 validates :cycle_id, numericality:{ other_than: 1 , message: "can't be blank" } 8end
controller
ruby
1class RoutinesController < ApplicationController 2 def new 3 @routine = Routine.new 4 end 5 6 def create 7 @routine = Routine.new(routine_params) 8 if @routine.save 9 redirect_to root_path 10 else 11 render :new 12 end 13 end 14 15 private 16 17 def routine_params 18 params.require(:routine).permit(:content,:cycle_id,:how_many) 19 end 20end 21
試したこと
補足情報(FW/ツールのバージョンなど)
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。