0

编辑/更新操作不起作用。

我有三个模型:

文件.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

文档目录.rb

has_many :configuration_documents
has_many :documents, through: :configuration_documents

配置文件.rb

belongs_to :document
belongs_to :document_catalog

这是我new在documents_controller.rb 上的方法:

  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|%>`

这是我在文档控制器版本 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>

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

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

问候。

4

1 回答 1

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|
于 2016-05-21T02:49:04.277 回答