Rails编辑/更新操作不适用于嵌套模型(has_many:through)

时间:2016-05-20 23:35:45

标签: ruby-on-rails nested-forms nested-attributes has-many-through collection-select

编辑/更新操作无效。

我有三种模式:

document.rb

belongs_to :languages
has_many :configuration_documents
has_many :document_catalogs, through: :configuration_documents

accepts_nested_attributes_for :document_catalogs
accepts_nested_attributes_for :configuration_documents

document_catalog.rb

has_many :configuration_documents
has_many :documents, through: :configuration_documents

configuration_document.rb

belongs_to :document
belongs_to :document_catalog

这是documents_controller.rb上的new方法:

  def new
    @document = Document.new
    @all_documents = DocumentCatalog.all
    @configuration_document = @document.configuration_documents.build
  end

这是我在documents_controller.rb版本1上的创建方法(使用此代码,我可以创建文档)。

   def create
    @document = Document.new(document_params)

    params[:document_catalogs][:id].each_line do |document|
      if !document.empty?
       @document.configuration_documents.build(:document_catalog_id => document)
      end
    end

    respond_to do |format|
      if @document.save
        format.html { redirect_to admin_document_path(@document), notice: 'Document was successfully created.' }
        format.json { render :show, status: :created, location: @document }
      else
        format.html { render :new }
        format.json { render json: @document.errors, status: :unprocessable_entity }
      end
    end
  end

使用上面的代码进行创建,我在尝试 编辑 时出现此错误:

undefined method `model_name' for nil:NilClass on `<%= fields_for (@configuration_document) do |dc|%>`

这是我在documents_controller版本2上创建操作的代码:

    def create
    @document = Document.new(document_params)
    if params[:document_catalogs][:id]
      params[:document_catalogs][:id] = params[:document_catalogs][:id].reject(&:empty?).map(&:to_i)
      params[:document_catalogs][:id].each do |document|
        @miniature.configuration_documents.build(:document_catalogs_id => document)
      end
    end

    respond_to do |format|
      if @document.save
        format.html { redirect_to admin_document_path(@document), notice: 'Document was successfully created.' }
        format.json { render :show, status: :created, location: @document }
      else
        format.html { render :new }
        format.json { render json: @document.errors, status: :unprocessable_entity }
      end
    end
  end

注意:当我使用上面的代码进行更新时,即使是“new”也无效,我在创建操作上遇到了这个错误:

NoMethodError - undefined method `reject' for "2":String:
params[:document_catalogs][:id] = params[:document_catalogs][:id].reject(&:empty?).map(&:to_i)

这是我对documents_controller.rb的更新方法:

 def update
    @document = Document.find(params[:id])
    if params[:document_catalogs][:id]
      params[:document_catalogs][:id] = params[:document_catalogs][:id].reject(&:empty?).map(&:to_i)
      old_documents_catalogs = @document.configuration_documents.pluck(:document_catalog_id)
      new_dcos = params[:document_catalogs][:id] - old_documents_catalogs 
      old_documents_catalogs = old_documents_catalogs - params[:document_catalogs][:id] 
      new_dcos.each do |dc|
        @document.configuration_documents.build(:document_catalog_id => dc)
      end
      ConfigurationDocument.delete_all(:document_catalog_id => old_documents_catalogs)
    end
    if @document.update_attributes(document_params)
      flash[:success] = "document updated"
      redirect_to @document
    else
      render 'edit'
    end
 end

如果我像正常的脚手架一样离开更新。我收到错误:

undefined method `model_name' for nil:NilClass on `<%= fields_for (@configuration_document) do |dc|%>

“文件表格”的相关部分:

    <div class="form-group">
      <%= fields_for (@configuration_document) do |dc|%>
      <%= collection_select(:document_catalogs, :id, @all_documents, :id, :name, {}, class: 'form-control')%>
     <% end %>
   </div>

我真的知道这很多东西。但基本上,如果我使用“创建”的第一版,我可以创建,但不能编辑/更新

如果我使用create的第二版,我就无法创建,编辑/更新。

问候。

1 个答案:

答案 0 :(得分:0)

试试这个:

<%= fields_for :configuration_document, @configuration_document do |dc|%>

field_for方法需要2个参数,模型和模型对象。你刚刚错过了这个模型。

在您的第一个create方法中,您使用的是:

params[:document_catalogs][:id].each_line do |document|

我相信你真正想要的是:

params[:document_catalogs][:id].each do |document|

在第二个create方法中,您使用的是:

params[:document_catalogs][:id] = params[:document_catalogs][:id].reject(&:empty?).map(&:to_i)
params[:document_catalogs][:id].each do |document|

我觉得你真的想用这个:

params[:document_catalogs].reject(&:empty?).map(&:to_i).each do |document|