0

我已经被这个问题困扰了好几天了。这是我的第一个 Rails 应用程序,我快完成了,只是被这个大大减慢了。

我读到使用 Accepts_nested_attributes_for 是解决我在配方中嵌套成分以用于表单的问题的最佳解决方案,但到目前为止我还没有运气。我已经阅读了有关该主题的所有内容。API 说该模型现在有一个(在我的情况下)成分_attributes= 方法,我还没有看到。我尝试在带有哈希的控制台中使用 update_attributes

recipe.update_attrubutes {:ingredients_attributes=>[{:name=>"Test Ingredient"}]}

这返回true,但显示配方对象没有变化。

我尝试了很多方法,我的第一个方法是在 View 的 forms_for 中使用 fields_for。由于这不起作用并且我测试代码无济于事,我开始深入研究,问题肯定比视图更深。

任何帮助将非常感激。我的代码如下

配方模型

对于 db 样式名称和显示样式名称之间的混淆转换,我们深表歉意。到目前为止,这是我维护它们的最佳解决方案。

class Recipe < ActiveRecord::Base

  DISH_TYPES={""=>"", "Breakfast"=>"breakfast", "Lunch"=>"lunch", "Soup"=>"soup", "Entree"=>"entree", "Desert"=>"desert"}
  SEASONS={"Any Season"=>"any", "Fall"=>"fall", "Winter"=>"winter", "Spring"=>"spring", "Summer"=>"summer"}
  DIETS={""=>"", "Vegan"=>"vegan", "Vegetarian"=>"vegetarian", "Omnivore"=>"omnivore"}

  DISH_TYPES_R={""=>"", "breakfast"=>"Breakfast", "lunch"=>"Lunch", "soup"=>"Soup", "entree"=>"Entree", "desert"=>"Desert"}
  SEASONS_R={"any"=>"Any Season", "fall"=>"Fall", "winter"=>"Winter", "spring"=>"Spring", "summer"=>"Summer"}
  DIETS_R={""=>"", "vegan"=>"Vegan", "vegetarian"=>"Vegetarian", "omnivore"=>"Omnivore"}

  attr_protected :user_id
  # Do NOT include user_id in the attr_accessible method, to avoid
  # the possibility of it being changed externally.
  belongs_to :user
  validates_presence_of :user  
  has_many :ingredients, dependent: :destroy # , inverse_of: :recipe

  # Allows for forms to write attributes down the hierarchy.
  accepts_nested_attributes_for :ingredients, allow_destroy: true , reject_if: lambda { |a| a[:content].blank? }

  before_save do
    # Lowercase and convert to strings all of the attributes
    # that require a specific format, namely the values in the
    # constant hashes above.
    STRING_ATTRIBUTES.each do |s|
      self.send("#{s}=".to_sym, self.send(s).downcase.to_s)
    end
  end

  validates :user_id, presence: true
  validates :name,  presence: true,
                    length: { maximum: 64 } #,uniqueness: true
  validates :dish_type, inclusion: { in: DISH_TYPES.values }
  validates :season, inclusion: { in: SEASONS.values }
  validates :diet, inclusion: { in: DIETS.values}
  validates :directions,  presence: true,
                          length: { maximum: 8192 }

  validates_associated :ingredients


  default_scope order: "recipes.created_at DESC"


  def method_missing (method)
    method = method.to_s
    if method.slice!("display_")
      if STRING_ATTRIBUTES.include?(method.to_sym)
        hash_name = method.upcase + 'S_R'
        Recipe.const_get(hash_name)[self.send(method.to_sym)]
      else
        method
      end
    else 
      method.class
    end
  end

  private

    STRING_ATTRIBUTES = [:dish_type, :season, :diet]

end

成分模型

class Ingredient < ActiveRecord::Base

  attr_protected :id, :recipe_id
  belongs_to :recipe

  validates_presence_of :name
  #validates_presence_of :recipe
end

配方控制器

我读过我不应该更改控制器中的任何内容。我只添加了一行,因此成分表显示在我的视图中

class RecipesController < ApplicationController
  before_filter :signed_in_user, only: [:create, :edit, :destroy]

  def index
    @recipes = Recipe.all
  end

  def new
    if signed_in?
      @recipe = current_user.recipes.build 
      @recipe.ingredients.build
    else
      flash[:error] = "First you have to register! Sign up here and start adding recipes ASAP."
      redirect_to signup_path
    end
  end

  def create
    @new_recipe = current_user.recipes.build(params[:recipe])
    if @new_recipe.save
      flash[:success] = "You've successfully added #{@new_recipe.name}!"
      redirect_to @new_recipe
    else
      redirect_to 'new'
    end
  end

  def edit
    @recipe = Recipe.find(params[:id])
  end

  def show
    @recipe = Recipe.find(params[:id].to_i)
  end

end

配料控制器

我不相信成分控制器有任何用处,因为成分(目前)只能通过其父配方访问。

I will include the views upon request, but as I stated earlier, I don't believe it is that high-level.

4

1 回答 1

1
  1. You need to set attr_accessible for Recipe model and add there :ingredients_attributes
  2. As i see in your config, you have reject_if: lambda { |a| a[:content].blank? } for ingrediens_attributes and you are setting it only with name
于 2012-12-28T04:39:37.887 回答