uninitialized constant ActionView::CompiledTemplates::Category

寵の児 提交于 2019-12-19 16:54:50

问题


using this tutorial

http://railscasts.com/episodes/57-create-model-through-text-field

need to make it work in my app, was on rails 3.0.7 and it worked fine, updated it to 3.1.3 and I got this error now

uninitialized constant ActionView::CompiledTemplates::Category

I would look for answers more time but now I am really short on time. I have looked into most part of google results related to this problem and no good. Need help please.

form

<%= f.collection_select :category_id, Category.find(:all), :id, :name, :prompt => "Select a Category" %>
or create one:
<%= f.text_field :new_category_name %>

model

class Tvstation < ActiveRecord::Base
  belongs_to :category
  attr_accessor :new_category_name
  before_save :create_category_from_name

  def create_category_from_name
    create_category(:name => new_category_name) unless new_category_name.blank?
  end
end

回答1:


ok, just for others if they will get into this stupid things as I did, don't forget to have the category.rb in the app/models..

class Category < ActiveRecord::Base
  ...
end



回答2:


For me, i got the similar problem in the views. My Category model is available inside namespace example

Module Financial
  class Category
  end
end

When i call simply Category.get_method. It was giving same error. so that i modified into Financial::Category that solved my problem.




回答3:


I was using a PORO and it wasn't loading, giving me this error. It was because I had changed the class name without changing the file name.




回答4:


How the others suggested I had a similar problem solved be fix of wrong model name.



来源:https://stackoverflow.com/questions/10588749/uninitialized-constant-actionviewcompiledtemplatescategory

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!