使用本教程
http://railscasts.com/episodes/57-create-model-through-text-field
需要让它在我的应用程序中运行,在 rails 3.0.7 上运行良好,将其更新到 3.1.3,我现在收到此错误
uninitialized constant ActionView::CompiledTemplates::Category
我会花更多时间寻找答案,但现在我的时间真的很短。我已经查看了与此问题相关的大部分谷歌结果,但没有任何好处。请需要帮助。
形式
<%= f.collection_select :category_id, Category.find(:all), :id, :name, :prompt => "Select a Category" %>
or create one:
<%= f.text_field :new_category_name %>
模型
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