English 中文(简体)
如何防止重复?
原标题:Rails nested form on many-to-many: how to prevent duplicates?

我在我的轨迹3.2.3 应用程序中设置了一个嵌套形式, 运作良好,我的模型是:

class Recipe < ActiveRecord::Base
  attr_accessible :title, :description, :excerpt, :date, :ingredient_lines_attributes

  has_and_belongs_to_many :ingredient_lines
  accepts_nested_attributes_for :ingredient_lines
end

并且:

class IngredientLine < ActiveRecord::Base
  attr_accessible :ingredient_id, :measurement_unit_id, :quantity

  has_and_belongs_to_many :recipes
  belongs_to :measurement_unit
  belongs_to :ingredient
end

如上所述,食谱可能有多个成分链,反之亦然。

我想避免的是 印地安林桌上的重复记录

例如,想象一下对于配方_ 1, 配方为 {“ 度量_ unit_ id” {gt; 1; “ 整数_ id” {gt; 1; “ 数量” {gt; 3.5} 相关联, 如果配方_ 5 配方为 IngredentLine 子窗体由具有相同值的用户编译, 我并不想在配方成分_ lines_ recipes 上有新记录, 但只想要在配方表格的成分_ lines_ recipes 上有新的关联记录 。

请注意,目前我没有任何 IngredientLine 控制器来保存和更新 IngredientLines 是由嵌套式常规操作的。 即使是我的食谱控制器也是简单和标准的 :

class RecipesController < ApplicationController
  respond_to :html

  def new
    @recipe = Recipe.new
  end

  def create
    @recipe = Recipe.new(params[:recipe])
    flash[:notice] =  Recipe saved.  if @recipe.save  
    respond_with(@recipe)
  end

  def destroy
    @recipe = Recipe.find(params[:id])
    @recipe.destroy
    respond_with(:recipes)
  end

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

  def update
    @recipe = Recipe.find(params[:id])
    flash[:notice] =  Recipe updated.  if @recipe.update_attributes(params[:recipe])
    respond_with(@recipe)
  end

end

我猜测这足以推翻 IngredientLine 的标准 create 行为 , 使用 find_ or_ create , 但我不知道如何实现 。

但还有另外一个重要点需要小心, 想象一下在有些成分线存在的情况下, 儿童表格的编辑, 如果我加上另一个成分线, 已经存储在 IngredientLine 表格中, 铁路当然不应该在 IngredientLine 表格上写任何文字, 而是应该区分已经与父母相关联的儿童记录, 和需要建立关系的新儿童记录, 在合并表格上写下新记录 。

谢谢!

问题回答

入食模型重新定义方法

def ingredient_lines_attributes=(attributes)
   self.ingredient_lines << IngredientLine.where(attributes).first_or_initialize
end

旧的问题,但我也有同样的问题。 忘了添加: id 和 4 强参数的 4 条轨线的白色列表 。

例如:

部件_ 控制器.rb

def widget_params
  params.require(:widget).permit(:name, :foos_attributes => [:id, :name, :_destroy],)
end

构件.rb

class Widget < ActiveRecord::Base
  has_many :foos, dependent: :destroy
  accepts_nested_attributes_for :foos, allow_destroy: true
end

折价rb

class Foo < ActiveRecord::Base
  belongs_to :widget
end

我遇到类似的情况,在<这个答案中找到了灵感。简而言之,在节省时间之前,我并不担心嵌套模型的重复。

转译到您的示例时,我将 autosave_contel_records_for_ingredient_lines 添加到 recipe 。它通过 redition_lines 进行循环,并如您直觉所说,执行 find_or_recape 。如果成分_lines是复杂的, Yuri s first_or_stirity 方法可能更干净。

我相信这是您想要的行为: 嵌套模型从不重复, 但编辑一个模式会导致新记录, 而不是更新共享记录 。 孤儿( code) / redient_ lines 很有可能成为孤儿 。 但如果这是一个严重的关注问题, 如果该模式只有一个 < code> recipe 和符合当前身份的代号, 您可以选择更新 。





相关问题
Ruby parser in Java

The project I m doing is written in Java and parsers source code files. (Java src up to now). Now I d like to enable parsing Ruby code as well. Therefore I am looking for a parser in Java that parses ...

rails collection_select vs. select

collection_select and select Rails helpers: Which one should I use? I can t see a difference in both ways. Both helpers take a collection and generates options tags inside a select tag. Is there a ...

RubyCAS-Client question: Rails

I ve installed RubyCAS-Client version 2.1.0 as a plugin within a rails app. It s working, but I d like to remove the ?ticket= in the url. Is this possible?

Ordering a hash to xml: Rails

I m building an xml document from a hash. The xml attributes need to be in order. How can this be accomplished? hash.to_xml

multiple ruby extension modules under one directory

Can sources for discrete ruby extension modules live in the same directory, controlled by the same extconf.rb script? Background: I ve a project with two extension modules, foo.so and bar.so which ...

Text Editor for Ruby-on-Rails

guys which text editor is good for Rubyonrails? i m using Windows and i was using E-Texteditor but its not free n its expired now can anyone plese tell me any free texteditor? n which one is best an ...

热门标签