Rails,一种模型有多个实例

发布于 2024-12-06 18:05:33 字数 53 浏览 1 评论 0原文

如何以一种形式创建一个模型的多个实例? 就我而言,用户必须能够一次性上传许多带有描述的文件。

How can I create many instances of one model in one form?
In my case user must be able to upload many files with descriptions in one time.

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

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

发布评论

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

评论(1

A君 2024-12-13 18:05:33

如果模型中的用户和文件之间存在关联,则可以使用嵌套属性来使用每个模型的属性构建表单。查看 http://ryandaigle .com/articles/2009/2/1/what-s-new-in-edge-rails-nested-attributes 开始

您的表单将如下所示:

<%= form_for @user do |user_form| %>
  First name: <%= user_form.text_field :first_name %>
  Last name : <%= user_form.text_field :last_name %>

  <%= fields_for @user.files do |file_fields| %>
    <%= file_fields.text_field :name %>
  <% end %>

  <%= f.submit %>
<% end %>

If there is an association between users and files in your models, you can use nested attributes to build your form with attributes from each model. Check out http://ryandaigle.com/articles/2009/2/1/what-s-new-in-edge-rails-nested-attributes to get started

Your form would look something like this:

<%= form_for @user do |user_form| %>
  First name: <%= user_form.text_field :first_name %>
  Last name : <%= user_form.text_field :last_name %>

  <%= fields_for @user.files do |file_fields| %>
    <%= file_fields.text_field :name %>
  <% end %>

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