Ruby on Rails:如何从表单收集子表的值?

发布于 2024-08-17 02:27:22 字数 792 浏览 8 评论 0原文

引用问题#2013421,我有以下 RoR 模型:

class Game < ActiveRecord::Base
  has_many :piles
end

class Pile < ActiveRecord::Base
  belongs_to :game
end

为了论证,假设 Game 有一个属性 name,并且 Pile 有一个属性属性类型,均为字符串。每场比赛正好有 10 堆。

我想要一个 HTML 表单来创建一个新游戏,类似于 ruby​​ script\generatescaffold 生成的游戏;就像:

<h1>New game</h1>

<% form_for(@game) do |f| %>
  <%= f.error_messages %>

  <p>
    <%= f.label :name %><br />
    <%= f.text_field :name %>
  </p>
  <p>
    <%= f.submit 'Create' %>
  </p>
<% end %>

<%= link_to 'Back', games_path %>

如何向表单添加字段,以便读取 10 堆中每一堆的 Pile.type 字段的值?

Referencing question #2013421, I have the following RoR models:

class Game < ActiveRecord::Base
  has_many :piles
end

class Pile < ActiveRecord::Base
  belongs_to :game
end

For the sake of argument, suppose Game has an attribute name, and Pile has an attribute type, both string. There are precisely 10 piles per game.

I would like a single HTML form to create a new Game, similar to the one generated by ruby script\generate scaffold; that is like:

<h1>New game</h1>

<% form_for(@game) do |f| %>
  <%= f.error_messages %>

  <p>
    <%= f.label :name %><br />
    <%= f.text_field :name %>
  </p>
  <p>
    <%= f.submit 'Create' %>
  </p>
<% end %>

<%= link_to 'Back', games_path %>

How can I add fields to the form in order to read values for the Pile.type field for each of the 10 piles?

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

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

发布评论

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

评论(1

゛时过境迁 2024-08-24 02:27:22

您可以执行以下操作:

model:

class Game < ActiveRecord::Base
  has_many :piles
  accepts_nested_attributes_for :piles
end

在您的表单中:

 <% f.fields_for :piles do |pile_form| %>

   <%= pile_form.label :your_attribute %>
   <%= pile_form.text_field :your_attribute %>

 <% end %>

考虑“type”method-keyword-column 是由 ActiveRecord 保留的,以实现多态关联,

请参阅 有关 Rails 中嵌套表单的良好指南

You can do something like this:

model:

class Game < ActiveRecord::Base
  has_many :piles
  accepts_nested_attributes_for :piles
end

in your form:

 <% f.fields_for :piles do |pile_form| %>

   <%= pile_form.label :your_attribute %>
   <%= pile_form.text_field :your_attribute %>

 <% end %>

Consider that 'type' method-keyword-column is reserved by ActiveRecord to achieve polymorphic associations

see a good guide about nested forms in rails

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