接受一条记录和多条关联记录的表格?

Form to accept a record and multiple associated records?

如果一个用户has_many技能,一个技能belongs_to一个用户:

class User < ApplicationRecord
  has_many :skills
  validates_length_of :skills, maximum: 5
end
class Skill < ApplicationRecord
  belongs_to :user
  validates_associated :user
end

如何制作接受用户和多种技能的表单?

这是一个带有用户和一个技能的表单,但我不知道如何让它在同一个表单中接受多个技能?

<%= form_for(@user) do |f| %> 
  
  <%= f.label :bio %><br>
  <%= f.text_field :bio %>

   <%= fields_for "user[skill]", @user.skill do |skill_fields| %>
      <%= f.label :skill %><br>
      <%= skill_fields.text_field :name %>
   <% end %>

  <%= f.submit "Apply", class: "btn btn-primary" %>
<% end %>

请注意,将 (5) 个字段显示在屏幕上而不是使用 javascript 动态生成是没问题的。

accepts_nested_attributes_for

可以考虑使用内置的Railsaccepts_nested_attributes_for.

请查看 Active Record Nested Attributes 文档,尤其是 One-to-many 部分。

这是关于如何为 accepts_nested_attributes_for - 10 Building Complex Forms.

生成 Rails 表单的官方指南