如何让设计在一个关系中与accepts_nested_attributes_for一起工作?

发布于 2024-10-27 05:54:57 字数 589 浏览 2 评论 0原文

我试图让我的用户表单也允许用户通过 form_for 同时填写他们的公司资料。由于某种原因,它没有显示公司字段。这是我的控制器和布局的代码。

class User < ActiveRecord::Base
  attr_accessible :company_attributes

  has_one :company
  accepts_nested_attributes_for :company
end

class Company < ActiveRecord::Base
  belongs_to :user

  # Validation
  validates :name, :presence => true
end

<%= f.fields_for :company do |company_form| %>
  <div class="field">
    <%= company_form.label :name, "Company Name" %><br />
    <%= company_form.text_field :name %>
  </div>
<% end %>

I am trying to get my user form to also allow the user to fill out their company profile at the same time via form_for. For some reason it is not showing the company fields. Here is my code for the controller and layouts.

class User < ActiveRecord::Base
  attr_accessible :company_attributes

  has_one :company
  accepts_nested_attributes_for :company
end

class Company < ActiveRecord::Base
  belongs_to :user

  # Validation
  validates :name, :presence => true
end

<%= f.fields_for :company do |company_form| %>
  <div class="field">
    <%= company_form.label :name, "Company Name" %><br />
    <%= company_form.text_field :name %>
  </div>
<% end %>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

鲸落 2024-11-03 05:54:57

Usercompany 属性不应该nil,因此无论是在控制器还是在表单中,创建它:

<% user.build_company if user.company.nil? %>
<%= f.fields_for :company do |company_form| %>
...

The company attribute of the User should be not-nil, so either in the controller or in the form, create it:

<% user.build_company if user.company.nil? %>
<%= f.fields_for :company do |company_form| %>
...
叶落知秋 2024-11-03 05:54:57

在模型中而不是在视图或控制器中执行此操作可能更好。

class User
  # Blah blah blah
  def profile
    super || build_profile
  end
end

It might be better to do this in the model rather than the view or the controller.

class User
  # Blah blah blah
  def profile
    super || build_profile
  end
end
夜吻♂芭芘 2024-11-03 05:54:57

Zabba 的上述解决方案仅适用于我:

<% @user.build_profile if @user.profile.nil? %>

Othwerise,视图不知道“用户”是什么

The above solution from Zabba only worked for me with:

<% @user.build_profile if @user.profile.nil? %>

Othwerise, the view had no idea what "user" is

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文