1

我被困住了。我有以下模型:个人资料、用户、工作。

用户有一个个人资料,个人资料有很多工作。

class Profile < ActiveRecord::Base

  belongs_to :user
  has_many :jobs

  attr_accessible :user_id, :first_name, :last_name, :headline,:jobs_attributes

  accepts_nested_attributes_for :jobs, allow_destroy: true
end

class User < ActiveRecord::Base

  has_one :profile
  attr_accessible :username,:email, :password,:profile_attributes
  accepts_nested_attributes_for :profile, allow_destroy: true
end

class Job < ActiveRecord::Base

  belongs_to :profile
  belongs_to :country

  attr_accessible :company, :country_id, :end_date, :job_title, :profile_id, :start_date
end

现在,我希望用户能够编辑他的个人资料并将工作添加到他的个人资料中。为此,我使用了以下代码:

<%= f.fields_for :jobs do |j| %>
          <%= j.label :job_title, "Job Title" %>
          <%= j.text_field :job_title %>

          <%= j.label :company, "Company" %>
          <%= j.text_field :company %>
          ............................
<% end %>

但问题是,如果用户已经在他的个人资料中有工作,这只会向我显示这些字段,并且我可以更新它。但在这种情况下,数组是空的,不会有迭代。我可以用什么来代替这个,以确保即使用户没有工作也能显示表单?

我试图添加一个“开始 - 结束时间”,但它没有用。检查 :jobs 数组是否为空和创建新的 Job 对象都没有工作......或者至少我的尝试。

你有什么想法?

谢谢!

控制器中的新方法。

def new

  resource = build_resource({})
  profile = resource.build_profile
  profile.jobs += [profile.jobs.build]  
  respond_with resource  

end`
4

2 回答 2

7

如果您想包含全新的字段,请在控制器Job中将其添加到数组中:jobs

profile.jobs.build

就像我们经常在我们的new动作中建立一个虚拟记录传递给一样form_for,我们也必须为 建立一个虚拟记录fields_for

于 2013-03-12T01:36:39.487 回答
-1

尝试更改:
accepts_nested_attributes_for :profile, allow_destroy: true

accept_nested_attributes_for :profile, :update_only => true

于 2013-03-12T04:21:08.810 回答