Вложенная форма недопустимого параметра внутри вложенной формы - PullRequest
0 голосов
/ 30 ноября 2018

У меня есть объект Workgroup, который имеет много resource_quantities.Resource_quantity принадлежит ресурсу.Мне нужна форма, которая может создать рабочую группу и ее дочерние ресурсы resource_quantities в одном месте.Я пытаюсь построить форму, используя вложенные атрибуты.Моя проблема заключается в том, что когда я отправляю свою форму, где я могу добавить множество resources_quantities и связанных с ними ресурсов, я получаю

  Parameters: {"utf8"=>"✓", "workgroup"=>{"name"=>"Living room", "description"=>"installation floor", "contractor_id"=>"1", "resource_quantities_attributes"=>{"1543577850668"=>{"quantity"=>"22", "resources"=>{"name"=>"wood", "unit_type"=>"Matériel", "purchase_price"=>"20", "price"=>"22", "unit_measure"=>"u", "vat"=>"12"}, "_destroy"=>"false"}}}, "commit"=>"Create Workgroup"}

Тот факт, что я получаю параметры ресурсов вместо resource_attributes, приводит к параметру Unpermitted:Ресурсы.Я пробовал это params.require (: рабочая группа) .permit!но я все еще получил ресурсы, что приводит к неизвестному атрибуту 'resources' для ResourceQuantity.

Вот полезный фрагмент кода:

Контроллер рабочих групп

def new
    @workgroup = Workgroup.new
    @workgroup.resource_quantities.build.build_resource
 end

 def create
    @workgroup =  Workgroup.new(workgroup_params)

    if @workgroup.save!
      raise
      redirect_to resources_path, notice: 'Resource was successfully created.'
    else
      render :new
    end
  end


 def workgroup_params
    params.require(:workgroup).permit(:name, :description, :contractor_id, :_destroy, {resource_quantities_attributes: [:quantity, :_destroy, {resources_attributes: [ :name, :unit_type, :price, :contractor_id, :purchase_price, :unit_measure, :vat]}]})
 end

Мои три модели

class Workgroup < ApplicationRecord

  has_many :resource_quantities, inverse_of: :workgroup
  has_many :resources, through: :resource_quantities
  accepts_nested_attributes_for :resource_quantities, allow_destroy: true
 end

 class ResourceQuantity < ApplicationRecord
  belongs_to :workgroup, optional: true
  belongs_to :resource, optional: true
  accepts_nested_attributes_for :resource, :allow_destroy => true
 end

 class Resource < ApplicationRecord
  has_many :workgroups, through: :resource_quantities
  has_many :resource_quantities, inverse_of: :resource
end

Моя форма для рабочей группы, которая объединяет форму для resource_quantities

<%= simple_form_for(@workgroup) do |f| %>
  <%= f.error_notification %>

  <div class="form-inputs">
    <%= f.input :name %>
    <%= f.input :description %>
    <%= f.association :contractor, as: :hidden, input_html: {value: f.object.contractor || "#{current_user.contractor.id}"} %>


    <h3> Resources </h3>

    <table class='large_table'>
      <tbody class="add_resource">

        <%= f.simple_fields_for :resource_quantities do |builder| %>
          <%= render 'resource_quantity_fields', f: builder %>
        <% end %>

      </tbody>
    </table>
  </div>


  <div class="form-actions">
    <%= f.button :submit %>
    <%= link_to_add_association 'Ajouter une resource', f, :resource_quantities, class: 'btn btn-primary', data: { association_insertion_node: '.add_resource', association_insertion_method: :append } %>
  </div>

<% end %>

Это мое частичное добавление полей, связанных с resource_quantity и resource

<tr class="nested-fields">

    <td>
      <%= f.input :quantity %>
    </td>

      <%= f.simple_fields_for :resources do |e| %>

      <td><%= e.input :name %></td>
      <td><%= e.input :unit_type, collection: Resource::TYPES %></td>
      <td><%= e.input :purchase_price %></td>
      <td><%= e.input :price %></td>
      <td><%= e.input :unit_measure, collection: Resource::UNIT_MEASURE%></td>
      <td><%= e.input :vat, collection: Resource::VAT%></td>



    <td>
      <%= link_to_remove_association theme_icon_tag("trash"), f %>
    </td>

     <% end %>
</tr>

Надеюсь, кто-нибудь сможет мне помочь Я новичок в рельсах

Ответы [ 2 ]

0 голосов
/ 03 декабря 2018

Кажется, что добавление resources_attributes в строку позволяет мне получить правильные параметры в консоли.

  simple_fields_for "resources_attributes" do |e| 

Я не знаю, хорошая ли это практика, но она работает нормально.

0 голосов
/ 01 декабря 2018

Можете ли вы попробовать следующее изменение?

Заменить

<%= f.simple_fields_for :resources do |e| %>

на

<%= f.simple_fields_for :resources_attributes do |e| %>
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...