2

我试图让它工作,但它没有!

我有

class User < ActiveRecord::Base
  has_many :events, :through => :event_users
  has_many :event_users
  accepts_nested_attributes_for :event_users
end

class Event < ActiveRecord::Base
  has_many :event_users
  has_many :users, :through => :event_users
  accepts_nested_attributes_for :users
end

class EventUser < ActiveRecord::Base
  set_table_name :events_users
  belongs_to :event
  belongs_to :user
  accepts_nested_attributes_for :events
  accepts_nested_attributes_for :users
end

还有表格布局

event_users
  user_id
  event_id
  user_type
events
  id
  name
users
  id
  name

这是我的表格

<%= semantic_form_for @event do |f| %>
  <%= f.semantic_fields_for :users, f.object.users do |f1| %>
    <%= f1.text_field :name, "Name" %>
    <%= f1.semantic_fields_for :event_users do |f2| %>
      <%= f2.hidden_field :user_type, :value => 'participating' %>
    <% end %>
  <% end %>
<%= link_to_add_association 'add task', f, :users %>
<% end %>

问题是,如果我以这种方式创建一个新用户,它不会设置 user_type 的值(但它会创建一个用户和一个带有 user_id 和 event_id 的 event_users)。如果我在创建用户并提交后返回编辑表单,则 user_type 的值在 events_users 中设置。(我也试过没有formtastic)有什么建议吗?谢谢!

- - 编辑 - -

我也尝试在用户之前拥有 event_users

<%= semantic_form_for @event do |f| %>
  <%= f.semantic_fields_for :event_users do |f1| %>
    <%= f1.hidden_field :user_type, :value => 'participating' %>
    <%= f1.semantic_fields_for :users do |f2| %>
      <%= f2.text_field :name, "Name" %>
    <% end %>
  <% end %>
<%= link_to_add_association 'add task', f, :event_users %>
<% end %>

但它只会给我一个错误:

用户(#2366531740) 预期,得到 ActiveSupport::HashWithIndifferentAccess(#2164210940)

- 编辑 -

link_to_association 是一种 formtastic-cocoon 方法(https://github.com/nathanvda/formtastic-cocoon),但我尝试过其他方法但结果相同

- -编辑 - -

def create
  @event = Event.new(params[:event])
  respond_to do |format|
    if @event.save
      format.html { redirect_to(@event, :notice => 'Event was successfully created.') }
      format.xml  { render :xml => @event, :status => :created, :location => @event }
    else
      format.html { render :action => "new" }
      format.xml  { render :xml => @event.errors, :status => :unprocessable_entity }                 
    end
  end
end
4

2 回答 2

2

老实说,我从未尝试过以has_many :through这种方式编辑或创建一个。

花了一点时间,并且必须修复formtastic_cocoon中的 js 才能使其正常工作,所以这是一个可行的解决方案。

您需要指定EventUser模型,然后填充User模型(反之亦然)。

所以在你写的模型里面:

class Event < ActiveRecord::Base
  has_many :event_users
  has_many :users, :through => :event_users
  accepts_nested_attributes_for :users, :reject_if => proc {|attributes| attributes[:name].blank? }, :allow_destroy => true
  accepts_nested_attributes_for :event_users, :reject_if => proc {|attributes| attributes[:user_attributes][:name].blank? }, :allow_destroy => true
end

class EventUser < ActiveRecord::Base
  belongs_to :user
  belongs_to :event
  accepts_nested_attributes_for :user
end

class User < ActiveRecord::Base
  has_many :events, :through => :event_users
  has_many :event_users
end

然后是意见。从events/_form.html.haml

= semantic_form_for @event do |f|
  - f.inputs do
    = f.input :name

    %h3 Users (with user-type)
    #users_with_usertype
      = f.semantic_fields_for :event_users do |event_user|
        = render 'event_user_fields', :f => event_user
      .links
        = link_to_add_association 'add user with usertype', f, :event_users

    .actions
      = f.submit 'Save'

(我现在忽略错误)然后,您需要指定部分_event_user_fields.html.haml部分(这里有一点魔法):

.nested-fields
  = f.inputs do
    = f.input :user_type, :as => :hidden, :value => 'participating'
    - if f.object.new_record?
      - f.object.build_user
    = f.fields_for(:user, f.object.user, :child_index => "new_user") do |builder|
      = render("user_fields", :f => builder, :dynamic => true)

并结束_user_fields部分(实际上不一定是部分)

.nested-fields
  = f.inputs do
    = f.input :name

这应该有效。请注意,我必须更新formtastic_cocoon gem,因此您需要更新到 0.0.2 版。

现在可以很容易地user_type从一个简单的下拉列表中选择,而不是隐藏字段,例如使用

= f.input :user_type, :as => :select, :collection => ["Participator", "Organizer", "Sponsor"]

一些想法(现在我证明它有效):

  • 这将始终即时创建新用户,实际上消除了对EventUser. 您是否也允许从下拉列表中选择现有用户?
  • 我个人会扭转它:让用户将自己分配给一个事件!
于 2011-01-19T22:20:20.263 回答
0

events_users 模型没有 ID 列吗?因为有一个额外的字段(user_type),所以 EventUser 是一个模型,应该有一个 ID。也许这就是为什么在您的第一种情况下没有设置 user_type 的原因。

于 2011-01-14T18:38:23.240 回答