accepts_nested_attributes_for с has_many =>: через параметры - PullRequest
26 голосов
/ 06 февраля 2010

У меня есть две модели, ссылки и теги, связанные через третий, link_tags. Следующий код находится в моей модели Link.

Ассоциация:

class Link < ActiveRecord::Base
  has_many :tags, :through => :link_tags
  has_many :link_tags

  accepts_nested_attributes_for :tags, :allow_destroy => :false, 
  :reject_if => proc { |attrs| attrs.all? { |k, v| v.blank? } }
end

class Tag < ActiveRecord::Base
  has_many :links, :through => :link_tags
  has_many :link_tags
end

class LinkTag < ActiveRecord::Base
  belongs_to :link
  belongs_to :tag
end

links_controller Действия:

  def new
    @link = @current_user.links.build
    respond_to do |format|
      format.html # new.html.erb
      format.xml  { render :xml => @link }
    end
  end

  def create
    @link = @current_user.links.build(params[:link])

    respond_to do |format|
      if @link.save
        flash[:notice] = 'Link was successfully created.'
        format.html { redirect_to links_path }
        format.xml  { render :xml => @link, :status => :created, :location => @link }
      else
        format.html { render :action => "new" }
        format.xml  { render :xml => @link.errors, :status => :unprocessable_entity }
      end
    end
  end

Просмотр кода из new.html.erb:

<% form_for [current_user, @link], :url => account_links_path do |f| %>
<%= render :partial => "form", :locals => { :f => f } %>
<% end %>

И соответствующий ему частичный:

  <%= f.error_messages %>

  <p>
    <%= f.label :uri %><br />
    <%= f.text_field :uri %>
  </p>
  <p>
    <%= f.label :title %><br />
    <%= f.text_field :title %>
  </p>

  <h2>Tags</h2>
  <% f.fields_for :tags_attributes do |tag_form| %>
  <p>
    <%= tag_form.label :name, 'Tag:' %>
    <%= tag_form.text_field :name %>
  </p>
  <% unless tag_form.object.nil? || tag_form.object.new_record? %>
  <p>
    <%= tag_form.label :_delete, 'Remove:' %>
    <%= tag_form.check_box :_delete %>
  </p>
  <% end %>
  <% end %>

  <p>
    <%= f.submit 'Update' %>
  </p>

Следующая строка кода в действии create в контроллере Link выдает ошибку:

@link = @current_user.links.build(params[:link])

Ошибка: Tag(#-621698598) expected, got Array(#-609734898)

Требуются ли дополнительные шаги в случае has_many =>: through? Похоже, это единственные указанные изменения для базового случая has_many.

Ответы [ 7 ]

8 голосов
/ 28 ноября 2012

Посмотрите на строку вашего кода

<% f.fields_for :tags_attributes do |tag_form| %>

Вам нужно использовать просто :tags вместо :tags_attributes. Это решит вашу проблему

Убедитесь, что в вашем контроллере есть ссылки и теги, такие как

def new
  @link = @current_user.links.build
  @link.tags.build
end
5 голосов
/ 04 августа 2011

Я нашел это здесь в stackoverflow:

Rails вложенная форма с has_many: через, как редактировать атрибуты модели соединения?

Скажите, пожалуйста, сработало ли это?

2 голосов
/ 30 марта 2011

Для того, чтобы это работало, вам нужно передать правильный хэш params:

params = {
  :link => {
    :tags_attributes => [
      {:tag_one_attr => ...}, {:tag_two_attr => ...}
    ],
    :link_attr => ...
  }
}

И ваш контроллер будет выглядеть так:

def create
  @link = Link.create(params[:link]) # this will automatically build the rest for your
end
1 голос
/ 06 февраля 2010

Попробуйте это:

<% f.fields_for :tags_attributes do |tag_form| %>
0 голосов
/ 02 сентября 2011

Вам нужно создать тег в вашем контроллере или в представлении

def new
  @link = @current_user.links.build
  @link.tags.build
end

#in your view you can just use the association name
<% f.fields_for :tags do |tag_form| %>
0 голосов
/ 29 июня 2011

1001 * попробовать *

<% f.fields_for :tags do |tag_form| %> 

(т.е. потерять _attributes в: tag_attributes) Так я обычно делаю вложенные формы

0 голосов
/ 06 февраля 2010

В вашем контроллере в новом действии (которое загружает частичную форму) вы создаете тег @ через вашу ссылку?

Так что вы должны увидеть что-то вроде:

@link = Link.new
@tag = @link.tags.build

Лучше всего опубликовать содержимое нового и создать действие вашего links_controller.

...