RoR - 协会实践 - 表格(视图)
我正在学习 Ruby on Rails。
我正在使用一些关联(has_many:through,...),
但是当我结合我的观点时,我遇到了一些问题。
我到底如何组合这些嵌套形式?我可以使用部分表单来完成此操作吗?我必须在哪里为此编写额外的代码?我见过的例子只使用“视图”,其他人也编辑控制器......
一个例子会非常好:-)
编辑:
我的“小”个人项目是关于电影的,我将向您展示模型。 我想要一种形式的所有数据库字段...
我从哪里开始? =>部分形式然后将其组合在一起? 还是从头开始?
表:boxMovies [ 名称:字符串 ]
表:boxMovies_movies [ boxMovies_id :字符串 movie_id : 字符串 部分:整数 ]
表:电影 [ 名称:字符串 描述:字符串 ]
表:电影新闻 [ movie_id:int(FK) 标题:字符串 新闻:文字 ]
I'm learning Ruby on Rails.
I'm using some associations (has_many :through, ...)
But i'm having some problems with it when i'm combining my views.
How exactly do i combine these nested forms? Can i do this with partial forms and where do i have to write extra code for this? I have seen examples only use the "view" and others also edit the controller....
An example would be very nice :-)
Edit:
My "little" personal project is about movies, i'll show you the model.
I want all the database fields in ONE form...
Where do i begin? => partial forms and put it together afterwards?
Or from scratch?
table: boxMovies
[
name:string
]
table: boxMovies_movies
[
boxMovies_id : string
movies_id : string
part : integer
]
table: movies
[
name : string
description : string
]
table: movieNews
[
movie_id : int (FK)
title : string
news : text
]
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我相信这就是您正在寻找的: accepts_nested_attributes_for ,如果你说得具体一点我可以给你更详细的答案。
I believe this is what you're looking for: accepts_nested_attributes_for, I can give you a more detailed answer if you be more specific.