保存嵌套表单时的未知属性



我正在用Rails 3编写一个引擎。generic_recipe包含如下食谱

module EdibleRecipe
  class GenericRecipe < ActiveRecord::Base
    attr_accessible :recipe, :recipe_attributes, ....
    has_many :recipes
    accepts_nested_attributes_for :recipes 
  end
end

使用

正确呈现表单
<%= f.fields_for :recipe do |r| %>
...

但是当保存时,我得到:

ActiveRecord::UnknownAttributeError in EdibleRecipe::GenericRecipesController#create

完整的代码在这里。任何帮助都非常感谢:)

使用

attr_accessible :recipes_attributes

代替:recipe_attributes

相关内容

  • 没有找到相关文章

最新更新