Rails,一种模型有多个实例
如何以一种形式创建一个模型的多个实例? 就我而言,用户必须能够一次性上传许多带有描述的文件。
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果模型中的用户和文件之间存在关联,则可以使用嵌套属性来使用每个模型的属性构建表单。查看 http://ryandaigle .com/articles/2009/2/1/what-s-new-in-edge-rails-nested-attributes 开始
您的表单将如下所示:
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: